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:27004
Vulnerability from csaf_redhat - Published: 2026-06-24 08:49 - Updated: 2026-06-29 19:34A 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-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64 | — |
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:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_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:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_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:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_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:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_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:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_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:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_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:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_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:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_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:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_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:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64 | — |
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:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_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:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_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:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_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:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_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:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_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:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_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:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_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:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_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:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_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:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x | — |
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.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64 | — |
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:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_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:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_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:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_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:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_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:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_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:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_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:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_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:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_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:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_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:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x | — |
Workaround
|
A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_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:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x | — |
{
"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.35 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.35. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:26999\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:27004",
"url": "https://access.redhat.com/errata/RHSA-2026:27004"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35469",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40895",
"url": "https://access.redhat.com/security/cve/CVE-2026-40895"
},
{
"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_27004.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.19.35 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T19:34:33+00:00",
"generator": {
"date": "2026-06-29T19:34:33+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:27004",
"initial_release_date": "2026-06-24T08:49:48+00:00",
"revision_history": [
{
"date": "2026-06-24T08:49:48+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-24T08:52:00+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T19:34:33+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/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781723547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1781213719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1781186002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1781184830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1781180484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3Acac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1781179640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Ad00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781185096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1781209182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Af8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1781184832"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1781213741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Ac1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781183245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ae7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1781213759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Ad7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781187616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1781181599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781182414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1781185098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ad3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1781184861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781181733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1781181701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1781180918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Af3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1781182406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1781183649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1781185712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Abf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1781209904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1781213980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Ac39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1781187517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Abba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1781188310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1781209650"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Af745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781185288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781181731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1781179495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1781179533"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1781290771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Aee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1781179516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1781213704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Ad2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1781180128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Aeb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1781180435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1781211004"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781708434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1781187812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1781209914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1781210172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781182516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Af7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781528081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781187407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1781214122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1781183039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781708630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1781211682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Aaeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1781210605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781213713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ad3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1781187732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1781188444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Ad25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1781185222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1781182566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Aa4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781184232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1781182393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1781213743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1781184804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1781209155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Add33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1781183733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781690307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1781211883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1781187335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1781212659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Ad6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781213754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Afbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1781180255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1781179502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1781179743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1781179451"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1781179513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1781179472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1781209059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3Ab33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1781209082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1781179677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1781179540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1781179604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1781187956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Ac45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1781179533"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ac0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1781214052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Afbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1781215438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1781268928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Acb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1781209545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1781183528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1781223599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Ac8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1781213960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1781209996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Ad0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1781182313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1781181405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1781181396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1781185098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ad7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1781180935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Afe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1781209062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Acfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1781186886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1781189016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1781213972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1781209262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Ad2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1781188190"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781180470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781184199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1781186744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1781213567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1781186360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Aca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1781213911"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ab8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781213631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Aaabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1781187981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Aa2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1781187318"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1781210363"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1781183171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Ace00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1781212201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1781213929"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Aef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781211082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Ad766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1781185716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ac4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1781183549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1781186599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Aed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1781213430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aa6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1781181725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3Aee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1781181744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1781181682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1781181750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Accb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1781181768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1781179585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781715505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1781211833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Ae2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1781214047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ac8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1781210128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1781214121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1781187002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1781213616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1781181107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Aa1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1781182578"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1781213740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781213561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Afd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1781179554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1781179587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1781223632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1781181854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781186263"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781214680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1781213634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1781214103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Aeeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1781182648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1781185963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1781187643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Abf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1781182668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781216087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1781183433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1781182714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1781186885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Abd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781557059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1781182797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1781211285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1781184175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1781214116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1781186583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Ab22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1781187494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Aefd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781213675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1781209031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Ad3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1781180373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Ab9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781180411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781184794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Afd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1781187116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ac594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1781212745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1781181393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ae81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1781209333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Adde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1781181473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Afede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1781183943"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1781213719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1781186002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1781184830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Abcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1781180484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1781179640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781185096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Afe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1781209182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1781184832"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1781213741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781183245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1781213759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781187616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ad306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1781181599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781182414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1781185098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Aa769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1781184861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Ae507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781181733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1781181701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1781180918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1781181819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1781180114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1781181798"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1781182406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1781183649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Abb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1781185712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781723547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1781209904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1781213980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1781187517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1781188310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1781209650"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781185288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781181731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Ac457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1781179495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1781179533"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Aa45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1781290771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Ac0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1781179516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Ad585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1781213704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1781180128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1781180435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Afda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1781211004"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Adb561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781708434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Abfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1781187812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1781209914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Ab5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1781210172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781182516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Ad8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781528081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781187407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Ad32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1781214122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1781183039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781708630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1781211682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1781210605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Ac0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781213713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ab55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1781187732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1781188444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1781185222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1781182566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Aff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781184232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1781182393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1781213743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1781184804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1781209155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1781183733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781690307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1781211883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1781187335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Aac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1781212659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781213754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1781180255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3Afd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1781179502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1781179743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1781179451"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1781179513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1781179472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1781209059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1781209082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1781179677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Ad8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1781179540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1781179604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1781187956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Ae0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1781179533"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1781214052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1781215438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1781268928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1781209545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Ac4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1781183528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1781223599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1781213960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1781209996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1781182313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1781181405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Ac6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1781181396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1781185098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1781180935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1781209062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Adcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1781186886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1781189016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Adc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1781213972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1781209262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1781188190"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781180470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ae1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781184199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781213631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Abdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1781186744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1781213567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1781186360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Abf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1781213911"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1781187981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1781187318"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1781210363"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Ada74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1781183171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1781212201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Ae13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1781213929"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781211082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Ae45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1781185716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Af2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1781183549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1781186599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Ae202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1781213430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1781181725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1781181744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1781181682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Afdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1781181750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Ab38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1781181768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3Abae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1781179996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Ac2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1781179810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Aede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1781179773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Aecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1781185142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1781180083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1781179585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781715505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1781211833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1781214047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ab3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1781210128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Ad1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1781214121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1781187002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1781213616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Abb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1781181107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Ae8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1781182578"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Adf09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1781213740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Aa7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781213561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Adef88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1781179554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1781179587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1781223632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1781181854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Abd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781186263"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Acf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781214680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1781213634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Ae0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1781214103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1781182648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Ae70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1781185963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Aa696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1781187643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1781182668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781216087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3Aab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1781179565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3Ae988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1781179454"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1781183433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Abdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1781182714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Ae8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1781186885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781557059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Ab2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1781182797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1781211285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Af86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1781184175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1781214116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Aa607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1781186583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Ab05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1781187494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781213675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1781715644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1781179994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1781181049"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1781181397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1781209031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Ad94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1781180373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781180411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1781179518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1781179518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Afbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1781179618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Afbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1781179618"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1781179497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3Af960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1781179454"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ad35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781184794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1781187116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ad70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1781212745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Aa8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1781181393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1781209333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Afb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1781181473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1781183943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1781179508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3Af9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1781179628"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Af595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1781213719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Af5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1781186002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1781184830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781185096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Ae8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1781209182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1781184832"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1781213741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Ad93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781183245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1781213759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Aa27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781187616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ad33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1781181599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781182414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ad7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1781185098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1781184861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Ac474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781181733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1781181701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1781180918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1781181819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Af1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1781180114"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1781181798"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ab09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1781182406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ac83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1781183649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1781185712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781723547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1781209904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1781213980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1781187517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1781188310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Ad04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1781209650"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Af175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781185288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Ab68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781181731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1781213704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1781180128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1781180435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1781211004"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781708434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Af6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1781187812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1781209914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1781210172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781182516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Ae3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781528081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ae9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781187407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1781214122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1781183039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781708630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Aea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1781211682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Aecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1781210605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Aa3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781213713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ae0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1781187732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1781188444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1781185222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1781182566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781184232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1781182393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1781213743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3Ad81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1781184804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1781209155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Ac1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1781183733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781690307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1781211883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ad9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1781187335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1781212659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781213754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ada3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1781180255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1781187956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1781214052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1781215438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1781268928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Abf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1781209545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1781183528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1781223599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Ae6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1781213960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Ac1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1781209996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1781182313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Ae14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1781181405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1781181396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1781185098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1781180935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Ab005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1781209062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1781186886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1781189016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1781213972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1781209262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1781188190"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781180470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ae994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781184199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Afab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1781186744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Aee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1781213567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ada82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1781186360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ac0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1781213911"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Aaf65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781213631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Ae075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1781187981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1781187318"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1781210363"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1781183171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Aa8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1781212201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1781213929"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Aa9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781211082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1781185716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ab607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1781183549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ae0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1781186599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1781213430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1781181725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3Af6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1781181744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1781181682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1781181750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Acd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1781181768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ae0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1781185142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781715505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1781211833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Afc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1781214047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ad72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1781210128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1781214121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Ad665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1781187002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1781213616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1781181107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1781182578"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ad3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1781213740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Acd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781213561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1781223632"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781216087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1781181854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781186263"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Ad836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781214680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1781213634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1781214103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ac5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1781182648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1781185963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1781187643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Afd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1781182668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Aebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1781183433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1781182714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1781186885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781557059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Adc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1781182797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1781211285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1781184175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1781214116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1781186583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1781187494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781213675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1781715644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1781179994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1781181049"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1781181397"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1781209031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1781180373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781180411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781184794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Af11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1781187116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Acb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1781212745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Ae18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1781181393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1781209333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1781181473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1781183943"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1781213719"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1781186002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1781184830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781185096"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1781209182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1781184832"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Afcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1781213741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Acb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781183245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1781213759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781187616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1781181599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781182414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Abd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1781185098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ab6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1781184861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Aaafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781181733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Afe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1781181701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Aad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1781180918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1781182406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1781183649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1781185712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Aa12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781723547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Afbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1781209904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1781213980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Acee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1781187517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1781188310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1781209650"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781185288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Af768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781181731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Afec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1781213704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1781180128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Aaae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1781180435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Ac0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1781211004"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781708434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Ae4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1781187812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1781209914"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Aeb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1781210172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Ac31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781182516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Af48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781528081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781187407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1781214122"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1781183039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781708630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1781211682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Aaea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1781210605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781213713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1781187732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1781188444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1781185222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1781182566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781184232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1781182393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Af8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1781213743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1781184804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1781209155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1781183733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Acd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781690307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1781211883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Aeb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1781187335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1781212659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Ad2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781213754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1781180255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Ad8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1781187956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Aca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1781214052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1781215438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Af42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1781268928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1781209545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1781183528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Ab09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1781223599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1781213960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1781209996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1781182313"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1781181405"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Ae45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1781181396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Aeb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1781185098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1781180935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1781209062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1781186886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ae051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1781189016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1781213972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Ae5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1781209262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1781188190"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781180470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Adf638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781184199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1781186744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ac047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1781213567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1781186360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1781213911"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781213631"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1781187981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Aeedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1781187318"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Aa663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1781210363"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Aadbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1781183171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1781212201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Ac3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1781213929"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781211082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1781185716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1781183549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Aa3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1781186599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1781213430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1781181725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1781179996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1781179810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Aaa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1781179773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1781185142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1781180083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781715505"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Ac0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1781211833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1781214047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1781210128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Ae6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1781214121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1781187002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1781213616"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1781181107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Ab7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1781182578"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1781213740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781213561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Aff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1781181854"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Aa39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781186263"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Af132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781214680"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1781213634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1781214103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1781182648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Aa970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1781185963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1781187643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1781182668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Ad9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781216087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1781183433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1781182714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1781186885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781557059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1781182797"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Ab8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1781211285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1781184175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ae60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1781214116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1781186583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Ab681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1781187494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Acddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781213675"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1781209031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1781180373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781180411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781184794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Ad87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1781187116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1781212745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1781181393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1781209333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1781181473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1781183943"
}
}
}
],
"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:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_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:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_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:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_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:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_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-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_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:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_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:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_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:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_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:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_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:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_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-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_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:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_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:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_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:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_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:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_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:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_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:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_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:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_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:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_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:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_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:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_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:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_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-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_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:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_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:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_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:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_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-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_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:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_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:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_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:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_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:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_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:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"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:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_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:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_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:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_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:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_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:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_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:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_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:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_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:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_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:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_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:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_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:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_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:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_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:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_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:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_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:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_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:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_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:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_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:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"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:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_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:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_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:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_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:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_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:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_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:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_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:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_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:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_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:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_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:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"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:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_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:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_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:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_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:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"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:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_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:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"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:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_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:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_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:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_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:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_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:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_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:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_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:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_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:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_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:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_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:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_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:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_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:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_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-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_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:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_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:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_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:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_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:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_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:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_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:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_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:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_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:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_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:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_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:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_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:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_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:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_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:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_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-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_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:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_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:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_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:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"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:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_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:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"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:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_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:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_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:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_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:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_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:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_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:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_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:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_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:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_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:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_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:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_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:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_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:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_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:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_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:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_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:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_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:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_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:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_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:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_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:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_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:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_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:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_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:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_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:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_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:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_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:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_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:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_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:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_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:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_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:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_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:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_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:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_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:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"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:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_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:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_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:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_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:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_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:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_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:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_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:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_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:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_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:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_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:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_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:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_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:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_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:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_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:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_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:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_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:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_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:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_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:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_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:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_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:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_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:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_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:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_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:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_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:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_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:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_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:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_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:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_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:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_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:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_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:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_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:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_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:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_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:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_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:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_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:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_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:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_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-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_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:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_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:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_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:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_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:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_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:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_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:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_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:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_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-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_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:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_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:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_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:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_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:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_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:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_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-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_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:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_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:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_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:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_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-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_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:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_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-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_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:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_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:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_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:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_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:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_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:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_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:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_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:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_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:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_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:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_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@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_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:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_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:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_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:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_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:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_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:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_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-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_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:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_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:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_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:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_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:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_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:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_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:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_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:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_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:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_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:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_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:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_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:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_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:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_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:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_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-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_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:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_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:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_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:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_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:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_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:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_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:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_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:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_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:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_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:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_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:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_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:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_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:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_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:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_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:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_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:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_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:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_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:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_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:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_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:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_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-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_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:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_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:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_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:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_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-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_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:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_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:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_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:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_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:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_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:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_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:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_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:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_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:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_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:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_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:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_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:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_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:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_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:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_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-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_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:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_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:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_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:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_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:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_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:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_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:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_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:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_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:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_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:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_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:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_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:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_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-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_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:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_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:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_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:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_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:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_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:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_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:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_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:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_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:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_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:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_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:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_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:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_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:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_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:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_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-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_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:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_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:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_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:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_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:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_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:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_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:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_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:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_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-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_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:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_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:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_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:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_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:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_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:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_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:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_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:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_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:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_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:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_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:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_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:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_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:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_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:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_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:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_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:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_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:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_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:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_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:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_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:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_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:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_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:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_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-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_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:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_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:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_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:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_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:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_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:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_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:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_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:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_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:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_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:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_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:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_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:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_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:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_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:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_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@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_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:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_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@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_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:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_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:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_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:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_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:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_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:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_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-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_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:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_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:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_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:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_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:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_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:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_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:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_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:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_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:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_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:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_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:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_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:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_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:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_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:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_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:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_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:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_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:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_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:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_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:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_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:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_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:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_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:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_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:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_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:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_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:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_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:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_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:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_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:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_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:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_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:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_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:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_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:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_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:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_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:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_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:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_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:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_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-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_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:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_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:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_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:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_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:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_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:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_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:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_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:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_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:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_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:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_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:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_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:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_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:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_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:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_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:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_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:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_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-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_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:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_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:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_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:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_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:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_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:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_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:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_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:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_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:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_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:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_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:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_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:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_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:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_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:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_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-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_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:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_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:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_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:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_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:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_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:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_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:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_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:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_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:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_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:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_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:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_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:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_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:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_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:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_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-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_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:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_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-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_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:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_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:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_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:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_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:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_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:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_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:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_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:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_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:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_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:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_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:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_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:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_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-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_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:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_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:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_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:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_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:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_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:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_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:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_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:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_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:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_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:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_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:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_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:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_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:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_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:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_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:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_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:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_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-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_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:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_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-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_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:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_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:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_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:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_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:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_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:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_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:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_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:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_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:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_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:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_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:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_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:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_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:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_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:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_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-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_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:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_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:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_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:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_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:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_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:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_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:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_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:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_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:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_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:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_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:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_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:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_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:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_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:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_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:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_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:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_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:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_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:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_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:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_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:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_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-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_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:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_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:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_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:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_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:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_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:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_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:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_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:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_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:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_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:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_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:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_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:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_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:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_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:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_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:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_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:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_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:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_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:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_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:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_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:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_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:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_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:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_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-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_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:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_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:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_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:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_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:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_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:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_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-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_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:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_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:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_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:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_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:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_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:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_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:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_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:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_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:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_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:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_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:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_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:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_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:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_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:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_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-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_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:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_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:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_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:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_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:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_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:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_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:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_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:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_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:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_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:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_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:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_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:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_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:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_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:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_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-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_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:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_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:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_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:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_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:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_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:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_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:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_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:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_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:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_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:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_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-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_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:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_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:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_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:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_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:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_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:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_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-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_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:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_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:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_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:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_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:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_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:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_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-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_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:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_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:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_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:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_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-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_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:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_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:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_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:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_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:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_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:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_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:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_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:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_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:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_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:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_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-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_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:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_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:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_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:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_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:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_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:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_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:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_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:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_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:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_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:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_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:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_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:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_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:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_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:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_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:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_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:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_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:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_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:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_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:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_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:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_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:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_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:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_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:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_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:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_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:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_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:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_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:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_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:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_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-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_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:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_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:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_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:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_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:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_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:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_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-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_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:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_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:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_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:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_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:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_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:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_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@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_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:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_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:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_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:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_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:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_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:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_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:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_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:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_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:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_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:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_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:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_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:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_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:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_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:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_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:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_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:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_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:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_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:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_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-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_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:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_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:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_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:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_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:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_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:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_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-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_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:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_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:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_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:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_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:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_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:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_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:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_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:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_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:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_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:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_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:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_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:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_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-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_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:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_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:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_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:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_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:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_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:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_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:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_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:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_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-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_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:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_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:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_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:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_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-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_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:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_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:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_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:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_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:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_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:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_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:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_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:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_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:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_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:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_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-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_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:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_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:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_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:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_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:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_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:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_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:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_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:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_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:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_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:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_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:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_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:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_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:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_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:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_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-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_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:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_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:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_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:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_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:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_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:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_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-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_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:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_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-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_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:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_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:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_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:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_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:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_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:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_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:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_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:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_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:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_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:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_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-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_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:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_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:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_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:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_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-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_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:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_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:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_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:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_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-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_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:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_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-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_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:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_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:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_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:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_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-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_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:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_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:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_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:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_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:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_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:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_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-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_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:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_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:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_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:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_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:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_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:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_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:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_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:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_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-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_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:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_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:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_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:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_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:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_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:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_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:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_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:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_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:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_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:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_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-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_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:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_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:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_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:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_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:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_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:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_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:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_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:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_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:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_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:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_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:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_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:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_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-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_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:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_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-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_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:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_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:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_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:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_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:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_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:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_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-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_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:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_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-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_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:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_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-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_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:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_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:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_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:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_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:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_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:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_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:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_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:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_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:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_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:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_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:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_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:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_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:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_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:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_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-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_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:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_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:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_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:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_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:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_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:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_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:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_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:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_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-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_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:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_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:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_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:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_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:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_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:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_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:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_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:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_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-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_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:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_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:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_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:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_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:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_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:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_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:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_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:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_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:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_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:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_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:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_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:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_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:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_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:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_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:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_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:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_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-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_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:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_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-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_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:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_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:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_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:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_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:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_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:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_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:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_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:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_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-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_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:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_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:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_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:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_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:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_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:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_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:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_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:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_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:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_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:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_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-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_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:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_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:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_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:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_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:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_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:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_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-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_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:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_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:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_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:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_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:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_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:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_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:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_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:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_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:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_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:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_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:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_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:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_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:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_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:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_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:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_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:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_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:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_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:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_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:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_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:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_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:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_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:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_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:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_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:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_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:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_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:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_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:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_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:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_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:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_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:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_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:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_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:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_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-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_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:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_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-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_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:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_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:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_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:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_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:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_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:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_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:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_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:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_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-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_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:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_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:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_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:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_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:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_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:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_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-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_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:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_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-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_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:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_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-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_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:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_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-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_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:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_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:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_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:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_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:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_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:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_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:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_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:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_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:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_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:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_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-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_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:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_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:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_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:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_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:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_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:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_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:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_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:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_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-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_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:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_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:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_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:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_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:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_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:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_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:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_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:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_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:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_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:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_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:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_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:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_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-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_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:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_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:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_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:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_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:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_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:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_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:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_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:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_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:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_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:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_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:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_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:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_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-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_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:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_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:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_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:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_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:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_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:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_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:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_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:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_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:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_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:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_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-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_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:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_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:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_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:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_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:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_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:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_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:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_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:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_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:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_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:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_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-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_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:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_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:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_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:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_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:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_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:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_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:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_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:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_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-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_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:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_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:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_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:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_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:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_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:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_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-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_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:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_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:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_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:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_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:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_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:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_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:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_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:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_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:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_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:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_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:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_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:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_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:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_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:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_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:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_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:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_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:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_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:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_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:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_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:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_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:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_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:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_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:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_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:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_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:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_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:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_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:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_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:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_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:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_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:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_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:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_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:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_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:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_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:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_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-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_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:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_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:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_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:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_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:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_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:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_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-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_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:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_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:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_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:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_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:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_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:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_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:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_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:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_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:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_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:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_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:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_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:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_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:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_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:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_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:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_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:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_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:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_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:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_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:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_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:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_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:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_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:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_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-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_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:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_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:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_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:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_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:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_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:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_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:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_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:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_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:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_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:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_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:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_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:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_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:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_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:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_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-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_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:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_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:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_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:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_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:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_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:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_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:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_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:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_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-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_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:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_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:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_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:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_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:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_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:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_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:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_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:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_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-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_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:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_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:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_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:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_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:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_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:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_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-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_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:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_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:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_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:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_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:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_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:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_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-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_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:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_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-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_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:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_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:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_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:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_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:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_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:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_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:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_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:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_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:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_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:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_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-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_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:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_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:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_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:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_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-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_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:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_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-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_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:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_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:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_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:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_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:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_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:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_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@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_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:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_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:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_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:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_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@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_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:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_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:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_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:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_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:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_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:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_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:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_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:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_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:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_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:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_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:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_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:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_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-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_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:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_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:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_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:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_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:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_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:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_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:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_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:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_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:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_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:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_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:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_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:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_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:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_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:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_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:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_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:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_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:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_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:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_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-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_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:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_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:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_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:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_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:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_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:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_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:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_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:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_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:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_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:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_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:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_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:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_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:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_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:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_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:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_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:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_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:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_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:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_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:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_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:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_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:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_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:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_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:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_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:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_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-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_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:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_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:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_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:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_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:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_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:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_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:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_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:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_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:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_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:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_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:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_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:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_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:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_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:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_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:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_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:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_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:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_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:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_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-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_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:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_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:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_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:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_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-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_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:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_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:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_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:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_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:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_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:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_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:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_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:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_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:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_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:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_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:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_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:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_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:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_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:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_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-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_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:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_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:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_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:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_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:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_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:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_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-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_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:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_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:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_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:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_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-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_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:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_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:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_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:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_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:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_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:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_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:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_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:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_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:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_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:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_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:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_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:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_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:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_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:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_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:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_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:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_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:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_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:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_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:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_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:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_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:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_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:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_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:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_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:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_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:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_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:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_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:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_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:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_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:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_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:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_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:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_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:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_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-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_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:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_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:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_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:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_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-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_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:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_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:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_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:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_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:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_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:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_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:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_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:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_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:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_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:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_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:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_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:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_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:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_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:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_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:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_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:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_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-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_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:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_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:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_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:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_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:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_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:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_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:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_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:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_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:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_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:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_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-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_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:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_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:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_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:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_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-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_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:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_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:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_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:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_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:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_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:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_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:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_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:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_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:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_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:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_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:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_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:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_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:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_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:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_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:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_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:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_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:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_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:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_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:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_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:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_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-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_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:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_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-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_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:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_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:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_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:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_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:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_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:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_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:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_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:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_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:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_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:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_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:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_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:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_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:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_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:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_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:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_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:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_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:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_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:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_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:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_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:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_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:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_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:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_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-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_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:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_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:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_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:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_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@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_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:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_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:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_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:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_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:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_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:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x",
"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/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_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-24T08:49:48+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:dc19d36773923353af81ddbc1dd8c46f83945cdbedabdde23b2b666714d2b27e\n\n (For s390x architecture)\n The image digest is sha256:c2eae1e42edf4f9c9992a1488118d2b9430b4407c7cb81bbd69b0516658ffb7c\n\n (For ppc64le architecture)\n The image digest is sha256:54338e3717067df3d8e9395c0b3da4e1f6fc2b75fde4a1913ed4ee8d8286f3ad\n\n (For aarch64 architecture)\n The image digest is sha256:574803abddc08338e22c2033b122f8b40dd942da47983fe2aa71927f015858e0\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-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27004"
},
{
"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:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_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 Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_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-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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_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-24T08:49:48+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:dc19d36773923353af81ddbc1dd8c46f83945cdbedabdde23b2b666714d2b27e\n\n (For s390x architecture)\n The image digest is sha256:c2eae1e42edf4f9c9992a1488118d2b9430b4407c7cb81bbd69b0516658ffb7c\n\n (For ppc64le architecture)\n The image digest is sha256:54338e3717067df3d8e9395c0b3da4e1f6fc2b75fde4a1913ed4ee8d8286f3ad\n\n (For aarch64 architecture)\n The image digest is sha256:574803abddc08338e22c2033b122f8b40dd942da47983fe2aa71927f015858e0\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-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27004"
},
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_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 Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_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-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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x"
]
}
],
"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.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x"
]
},
"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-24T08:49:48+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:dc19d36773923353af81ddbc1dd8c46f83945cdbedabdde23b2b666714d2b27e\n\n (For s390x architecture)\n The image digest is sha256:c2eae1e42edf4f9c9992a1488118d2b9430b4407c7cb81bbd69b0516658ffb7c\n\n (For ppc64le architecture)\n The image digest is sha256:54338e3717067df3d8e9395c0b3da4e1f6fc2b75fde4a1913ed4ee8d8286f3ad\n\n (For aarch64 architecture)\n The image digest is sha256:574803abddc08338e22c2033b122f8b40dd942da47983fe2aa71927f015858e0\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-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27004"
},
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x"
]
}
],
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
},
{
"cve": "CVE-2026-40895",
"cwe": {
"id": "CWE-212",
"name": "Improper Removal of Sensitive Information Before Storage or Transfer"
},
"discovery_date": "2026-04-21T21:02:33.280553+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460297"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40895"
},
{
"category": "external",
"summary": "RHBZ#2460297",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460297"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40895",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40895"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40895",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40895"
},
{
"category": "external",
"summary": "https://github.com/follow-redirects/follow-redirects/security/advisories/GHSA-r4q5-vmmm-2653",
"url": "https://github.com/follow-redirects/follow-redirects/security/advisories/GHSA-r4q5-vmmm-2653"
}
],
"release_date": "2026-04-21T19:59:59.759000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-24T08:49:48+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:dc19d36773923353af81ddbc1dd8c46f83945cdbedabdde23b2b666714d2b27e\n\n (For s390x architecture)\n The image digest is sha256:c2eae1e42edf4f9c9992a1488118d2b9430b4407c7cb81bbd69b0516658ffb7c\n\n (For ppc64le architecture)\n The image digest is sha256:54338e3717067df3d8e9395c0b3da4e1f6fc2b75fde4a1913ed4ee8d8286f3ad\n\n (For aarch64 architecture)\n The image digest is sha256:574803abddc08338e22c2033b122f8b40dd942da47983fe2aa71927f015858e0\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:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27004"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:39c836045dd74b5660ffb081492f66692c130c349cf1d06df22892c7f903326e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:84b8e6533185ec7f0f1bc522e22700f9d823095c03b184d0554cbb169777f652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8622f9769db33c15734ebdbbac14d354ebf9c3cc508229b8de93fb77652a5439_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f5dbdb6e850161f1436eb1df39e47868fa5f7340e64621f8530b334dbcd5c6b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1d45f00caffcc5c12f5d0cff5ff72ff47f32c04a02193b66a899e8cf2099090e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:449ec7a645c00c676c9d3d5c73f4384bf196aa6781d2414d9ebc7769005c5b02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:54c0eed8f3c8a1ebfd30d3982f5f64ae5022c0ec6804a3ed29bbe2b3db48aa61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:956b56da404da008aec486cbea63008019427e5c95c2fee88f8922b19ca5f346_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:39eba720cbf26ddc56f8ae6011bdef91b3bd1d3ae8f44b32d25a6a92f4897c6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4b21645b7e796b1fffd92cc02e065877e640edcca4ef8a1cdf1054e58f27ae8a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:9b97dc391e5f3628ea3368e5a986c11db4a0a2f44a52b60cd56323da8deba488_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d00faf1d961eec8202f9f6386f6f7f77e68a37e6f13ae5e636b046d6974fae73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3aaadafcce86f1934dad2403fdd066f5b9b03ef193b92c41d22d0196a1044119_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:6f504033b7c57eb17665570600d7afac8cde0af8b774af64a53954bd9fbf71d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7dae78af16880c22befcd3d8241566074e9c2fc4efeb7e0b2157f774f98e9996_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d8a8fc00de4fd6477a7fa6ed29deb1ef2a7856a0adaa101d687eb8a979ad33fc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:0fa0f7186db839b460f5315ae183bf4388c11118ba0fc0f961b8a30033efe9f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:377e3cb12e9e530130ea9645280493a3890115b594909371ec147462df0fe908_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:57e048ff8a7d5e9d60bbd49c0dc7b031e8ef67bb10151e3d8779ef80b53434f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b09cceb0d2082da89f3981e6c2dda344e3741a4ae818adecff33588bcc4d4ae3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5fb628fac3af57cbb8daf5064257051b7f3389d15ac56c176434d130483cd6b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aafe2ffaf3e26b14e4f1dfae9ffb936c789f712b63aca989bda1bffa5e7dc5d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:c474edddad3c61e96e019a005e952642e3039ed1b23435c1e9bafe6271896fcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e507fa913f3b3eee67c05d1a813c51332096354bf7009517d0a06ef89b38566d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:13b1705b8e99ddb611f8f51e152caeb1a05f03ee2d32bbd0145f2a30e70c1869_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3c9141874f0a032bab193d944f0e81eabe1a94c21b14858e8eafb9de62f95d09_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91785df8a570ca4255363a5c73e682fcf0a9674cf7a20f71b71c00cd15ad817c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a12765c0449b0ee1d105b231afd18eb43ac49193727b2759b061cb133bd08cc5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:859bf66f2b8aa5684ca95687b0ab9fde3ac93b2f3deae3148e1c5de05bf37a9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9a2cdba4a035c8fd164e4e8358a2fdda02d5a62402d010bd69c503e12f807499_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bf69caba257b9fd4d82fe97894cb46517eb2b406539f9fefc07d9329db03567b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fbc9f14dcc45f094b5a70cf30b825ef12cefe7dbd690bf43201edba1a0c495d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:17b159769ea25cbd1fe6ddd99c1b8fd7c8c8a426a699ffd6e01722cf322f5cdf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:37ed89ee1745b0ccaee54741d0391669f41c55738ac941df57c90eadeddf2090_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:777f268e1f27b6b9d4677cbad2195424de200d5e64a51ae46804ce9e954b29a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a6f1b595b7b590631688fb62d9c4a7b45eace95dcaee685d135bc04df8db86ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:21b2ba26c7e12e3114071a6890787ada070375a862101dac3f5599e8624bc67c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4a73130c2b666d66279a64762f93ba175c0a005e21337661df0f4b8c274396e3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9c2968da1fc8e777da986dd585b778e180932469a3f59df3e2cadc786b34e8fa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c0b507eebe881ffee244a620978bbb5b032f34ad3a8103c79c93bf0b4621ada5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4eb68d7f7d41adf57d6a4fdd21535bbc2bb338d5593a563f30212aaafb0e5f51_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:618237bb7cfa32fd6f209148a5cb8f5b81e76d6355149f7e17f653528c415e1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e2d6dc08a7fae21123a32a9d11b1b15de004da26f330938440b2fd75f6e463ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:fc2457d3ecca79c17319d10012e0003541bf0b9a5ecea72f56546cfebf7d2341_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3481a723696ae71107a42aecb3beb8e90b23cbb300d1a48dc76f95b3d682872d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:5b37886f22f00afd226c0644ed167ed307a99459504add1695ebe0187ff49dc6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6785268e57637abbae8d7b8847f18745a4ff5b9575204ce620e73e0eae0f0789_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d665caa0757997fd33bf8cc43cffc0d94f7a7ba9ff0706ea9be1ff694e2144fc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6c3158290bea3ba01d0a7358e8e084fe1ac08ff78c4bb523ef7f5a70a2ca2007_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a1159785e909e193f89c4527323b8cd72e21b74aee0a90c73f58865a961f6973_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b7d5d8fed4446ae53905525d1c26e93bb08314ce5ea0349da94fbca510a114ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e8cec9e58ae7921353272d3a58e9b70dbe628fdec18771d1572d768ff76f0ec2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1f256c0ff64f0353f441237e3cdea588f3ccbae69d8327ef6c0c26fddbbb7c65_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:2a1e19788834333e35842c1000746e3ddadab890816b37074207361efdc7767d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:311402d4fc8dab7077261eed25c5ffb5029a8307d2de13744fd1dc883639bcbc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:d9a78de8676c099583424e53cf9df4838f00afdfcd248eac6189d8fb6c0a04b2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:2fb79c530646e2e0ee3780313b52b48c30bd319981782bac7c7c7e6a09b1df21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:89ae5dbee1ee11ee447be33bb873988deb1069584db75f785e85f201fbd26fad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:948f3d9d7f404f7095c9a4f93445dd25ca1ce1ee49d16d424c4b9e22bd3c4697_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e9126434639dc981017fd95e08259bdebfa3ed02017014b9c1b214c837662b3f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:02ce9089161e5c7bda7e9ef955b1d7eb69138797b65570e3ab0166a1e8e5c285_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2ab527ffb11be72b797432d672a06a1fb079133a9a7bd49a42e47e99b8299d69_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7a849049086238cd6d4bd0c7935d6cac7fb374bf0a6be8cf69eaf8f3efbf7bb0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7ac2739d15502e9baf99a75f3238cda56cdbd27f2ac404b1c9782d3b3175ef4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:0e2c3f4a8673b1c198f90e50a9b6e53e79407c3ecbe88abd8c3021cd9165ec47_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3b6d8cf021e86a7e6e71db9db3f7df34de2dbdbe02a021b8b4ce58698643c6dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:74c8b3cc0a253059997e26b0bc7bc144cd720c97a159111690861c777160df53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:d81e7f32b38762960e1358ae5249d82e9d65b9ce837a1d0bad7002bc53d9ae38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:33d607d6200ffd69b2d1f9a38698c5c755cc7cc9318ea06fdceec05f701d7ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:71e54a565957bf409cdb45ca5caa6a0746bec1ecc9805ce54eab464ba1750981_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:93bb44d728a886aa26f1e3f11de3908b08a21cb95dd765dbad3b238a7b30e87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:cd5ba14c9130676cfebd0638bf0a3bd6f55bcb3312ba3c36e54f70aceee56430_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3118bdf89719f4c8add2c124bbd2cf346538390a1085b9326843d2827fbe5cee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3da7cdeb854dbd8efd4220733238d0468bcda2fb70b45bfef82c651b947f07f1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3f78f9dbc3a8da61a3e4837e3f57a0be6aa9d81c20ffd55509f498a837249c61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:9aa9d1f292ef2de440c867cc358b20bbc1baab4ce341f6fbba3703329b75b904_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:272067981037c49faa00d24e87ab4685ffa1e0324d335feee035ec83ba39c0ed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:65400ec7b7bde235979d400cf263cd59cc07739fcfb84e7e63db5124e59015aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d9bf783d600f323a0e36ab984e2ad69dd403d8f73926f43bce9cd2faf7953da9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:eb20319153a620090dd0028bf3794e577bc799bb533a87dad553166204d0a416_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:6f9ff8aac12801aac3bccde4a0badba50ef694dd524acc1e184eb20f692fcea7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83c426479cb8c072de0e7c8d1b82189fd149dde2130ee3642d42910d2861568d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:862a407b88cff5b1aadbbdf17953c631796bef7fe55ade2c437c2806b0092b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ac2ba533071516cbbfd542e69773f614d1398c0edaefb218a26a37bd9d0fcc5e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:945e6d8300a496246d6193928a4cd1ad35979249fa3cf58a4fe452efcf20e973_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b35edcbae5e5fd589bb584482f8223c7c86b3d753f8c2d5501a18da17503d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d2cd2abad449e0e9adc864a9dc3413d735871e2151ff3813e7928e956a56d6e7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d6439d56c2d9578817c82efbe830c28ae82b4a5accdab133cd57fb31ee4e8b39_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:6abd6718be17f9fb46f9b6103555a13f11e55dbd0a23becbcbcf4049b9f12cc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:76f7d25dd74a350c68ddbc615b3d4f08c20ce3d9c2c3e9a7a57cbd1512cd606f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da3160b7b03177969ee0e39fb1609c0bbf7e448326372e2ee7fabb774ee35111_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:fbdd6cdc5b2f989b229a539010caf9caa7131e9f190e52e74f119eb671fa908b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:551b9e842115080a997dd1c27d2596132d94782e694b943642f17bf4e260df91_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:fd7a7f70fbcfce3940214f877732baf3940cd4f3631fb4c73637bd1065c553dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:01c05645fa06eb85521a417673576c297f9c621853ac0f4fddddce32ac72d016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:7548a96ffe1832e8d7ccf57223c95cde75cd23029207de99dbddd6bcccdbb342_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:57f8ed1253794374aae100fe92abf0fd6b2a17eaa6d8dce3d2e911475d8742a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:7525f85b83ab37d1aaf0249a0c861da0891248cd92f634a0372bf1c8431bd263_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:21472842700361c5dec0e07503906d73af0dc8fa43196ad177046865c94b9ab0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:745a7e8947a8ed2e6162e166a09fcebb1e6453d5e63a4d8b29bf6d21273ceed1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:2d91e480192e004354e1e31e8043612c7d38eb1710bea64c6760defbf396191c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62dde984155621182a1647d1041f9fe027ce7c3e9e975ae2f7b4f0245af68908_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:11546f4ffec090eb9e2d8f9016f968762741db7317c8573797a5ead885968f15_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:80f1e053615a34e6c3e5e8bfb415405fbb644058ed004fdc08986982f3ed1d6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:192eb0090101d40964f092d05434bed8eb43f0e1e8600becf50c1fc94bf39447_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b33e6ba453ca043612096349f4c840d44507afb4ac54f947c71cd122788808aa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:0b665cade71210bb851f5415ac36d92cee23c7456cf53a1f93d9848f93092f60_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:14ff8f8ac39f7f88ec1c1ff340fd7d118eca71e23554faf341515cc14c33fe46_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:15a030bd86ea32ef85306616c2254a78069418a856a820a3567248551191023d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:166774d6a70a893da39ebcfc766ba70b28abffbab0a962a28c702df177efa634_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:8bfe4d59be3cd3d6984d93b9d68dc791decbf952a85b0cbdea74c20753b208a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:d8a06fbcb2917c5072f9b901a3fe65be9e85892970b5b0073bf99cf33a32cc84_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:988d35366dc89af22f4906d2b66b5d5ff6be2d7e193c2e4e008fa489a4b78bf6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:cac289e67a64f7118afe77098baa5b32a8fa010f08c5eeb8c6935408f688df5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:55912dae1ce99ba509aebdf10d8469297ccb34af002c2e993b74bdc198349b45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:bcd5a4fa06aa2556ca509e9f30ec41f9b077769704ef34897904d2c0fd46e9ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c45d33e5e01811f7ddb8e253593501056ee69a8db98e4aa9fa875d2dce14a4d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e0aaefe60a2c313334e4d2ef06ff8b3c28d977ef97239ee9f04bfc730f50ad64_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:01c414e973ede3de0639b5cfecca2e9ee98e512555e65b7a79cb82a8843df822_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7057833f8ba4c0e7b0eb89a31ff261b3d680de77f1e1ffc0c66aef109e101397_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c0df6a515013512dd7fd77b9958a1e6deda135cdf90747d96eb11c3296a4d56c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ca43a86a58186cc1dc594d0276170d255d6ed4f91e27d0fa9f4cac847fba31cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0eb7ce756324cf0409d236a4b04c520adae3dc1372ef1c00b4a3c3e05dcae008_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:397ac85da58f3d0bdce268799d595a9b516b7522224bb494d20f19690504460a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:3a62f9ea091857f0d820566d80b2723ce7e78aaa352bab46f46ab0cd61d75431_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:fbe0400b3867f33dd2c78a6b087e4bfda8b3a26e89644e7089d9c874bb7523a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:82ea4879697785655e4f64378d4e6cbeb7e472268e8b09d7a1fb3ee7aa610eec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8b00818c253c5380ca18fab2e7d920f5fa7fae28836bec555034423de795cb5b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e8809057316db8fe179feb9dd5221516864589146e000263c2d956d64dcb008d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:fe6e1f8bc4811d2cdc618ffcadd0a660408f6ef7ed5a563d7469c634e621dadc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:20ed71d80ecc7f670e91c642fc03d50a31dcc2783ec8da422861a9bd37f75168_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4a7f0aa44facc21d7e07767e50d0e8f9e9e128e7b6bbf11f461824c17e321f34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:817174fd0b2a62939f7822952cb5e4cb07a03a96076d150d96de18c3e1ebc6b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f42b5b3c287d3e6b2fedabe972cd53eca24d914b08590aaef98211a73cca6364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:00f7ecd97376808c2a8bc6dafcef8231028dfbf82ffa96797a11ce9b7b6448a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:111f68cf4c567c2653ca5328f96ac26f97b27a9f16d499240fddf563a3fbbaef_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:538cd73b80b07eafac18cd0a0c1470e7dced440e021a35ab6db5de49d52f6787_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f8c1b6c130d495a8ea87bc17e9e5c4b4a15a2df98693c625c4cb85291b240802_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:131912ea529d37b2cd7247da197b323225618f96e7d677c7bfbe7a8050ade361_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1b287da9f822000cd73aa4297142b41dd10e1fe6e4f24e004e10fde670cf4f0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bf7434905b06131f6b819fff06918e983fc223ec3b16161d3535eedc09f52ada_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cb2c5db1b708587a762c817e8a02a674315b82ad3ebe958a864d8d739ff41551_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:14d2f3e4a7f49b8b925417a1be06f4929abac5074955b412778181e009d119be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4a6977e47dae3b20083090b5388ac5bf1b14ef182093e39394a275c63289dc9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:895053b23f06fb8572893a9a5b24224279753376d667289e18aec9b5911f8833_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8bda2b4d186c34f5cc0794037d2704b37731dab71a3a2363511831ec635e3f60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:4c2e633a14a8d21d32886983a97b775899700cfa38994e84264762f3be6d9390_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:63a96b79bc60d3375fd65be9df6c20a5a070f6723ffefb387fd8d2b3025c03b6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:704ae181d6a8e1b67070b9b68ca5fec3ec7a77406a5fb7f4a1782a55acee4fad_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c4239ce702223aac82e6da6821bb49a3d8e0334a6cd259d761436011e2f32b3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:69e1111d1b8a15abd7c6dec6cc9b3613df50ec5ed7d38ac7e6c60b5dd0b587f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:70e20c527f56b791c7b60abc6cb52107cdf6b249bd673bfd7e319866d5c9dfd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c8f2878bc96034ba44bb700e8f6e7644430e19580f8086cc4d88454d3c5667a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:e6fc71811c987aa713705aa382ccf129e1f091cbb5519dca1f7882f9ed538828_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:289e3a6a2bd4b81494f7938f3cf49467185e6607561468a2c21592f5edba24a0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:824bc241e5b4597b3a130c496460b4834c4688885f5dcbc305d82569f372e542_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:9a5d31420cb37becb40f079f3f980a03b2ea1af2546aa7be511c21f439b1644d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c1d16fc298d29e9d2a1c17f66ee0d6349f19ea24336a50d2d06a423455656603_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:18bfc3574dcfd9fad8a5c148d20fb4f1f2b35d590da658cf77bc9589c328031a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a6507c165baa316e57373ddd30b5b3be5efe247bd8478e3e37f377f4b6ad9e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:97e8f22aae94b726573c3112bbf4d6a938b3cd9dc3643a0cdbcb7381366e69c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d0db0a8652365511df941350a627f3a2275bcb4245752acc264de9be544d3187_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:37a4b98d3288db36aa0e721c7fa2c14d6e3e93ea0b2393305eb83e35324fd5b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:73cfdf4e8f59999d946dddf1e700e1dc922a44f93156cc6aaf100e4b565a27f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:7cfd32dde205815f2ac2a56b0e3cbedfc9599a018454cdb94846521fe7736f14_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:f595bf7762b7c46e2b8b032341709eb900829119c15ea2f8542a6ec546541704_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1af3879b452dc02668afedf6723f929c58ce8fcd42d63e994dabd2f673ecd3c1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:213e31b62fee2a7901dd30d10c69a1efd2a838f1f1a1d9a6041ebbf8fb729be2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6466d5629679e0116055eb1c3c7f9efa51abdb1d2c6e0e7e45d5054faf07603e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:e14d654309d40f3cac23be2f30e6cf15a21529c87ce7136b065533afd6fb0163_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:0ca2283ceaeb02049e07985875415a4ac5184ad157c802afce0edca1fa1b4b14_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:7c156bf8ae8b5d0681f3837b41fd939d03fe4b147825ef540188a5a004601697_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c6e0bfaa4aaccde9a61415c95f645beca08fecc727fbe955ebaaff1751f7a98c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e45ded25745cf2a54baca4033494bf8e19a6421641b0ac437e5c9fce0acf30ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0323f5e6d2184d393cb17e9b8c4bd4d12432a3d3a618336b0972797e8a8acbb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:1d8b7d75235da3db8ae264f10a44995fb044105bec002fcfbee564f6f46b5e4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:47a20ff841296352f044d8ec8fe2e23de6647081bfe78d918d039366fc294f44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:eb664fd3a0623603c13afeb23bea0ee1b30e81f116133fc9bb9849814aded95a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:83dd03effab4974d7a8a502d48fd38292c99c2560de64bc5e829aa349eacf8c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:89dfb0c251f9616357f21f07077fc056edb685612ad5a1e332783edb223f2fbf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8b986f13cde266d0b5543c7764474cea1227f13d73cfe47d9428b1e71f3bb07c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d7199d135e86de6860f285d3b316f6952a8d6e0e07778d21e252141dc84f6aa5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:281f2b8dbc90ba20480309796afd00e0dd73470e2b3e9e0d312353d9f7f395a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2d8384e3a927340f1995ea53ea88681d1cffc8271f0d7e182836e084c6fb2692_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b005376e36d41da6d60ecbffb770528107aa7faad6fdd3364e1017c3ddcc2085_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:fe560ba0ef3eaf662cd3c22fe868f3c91bdaf65b5a42b75f9f1bda3d9cf62d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:34d33b7898ec368f1312ca6d5d8064c77f596183007f367c9ab0fc0f220c1d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:6e837e5cdb60aeb4b03775a2f89c58444c8accb2076d264a377a4f6812dd41bd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:cfc76f55ef8b2031937c3e6bfd4c9b701698ee43a989246c56aa19a33d2d1c2b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:dcdfc9d807c5cde466be5af4317b41d1bd2be13002d10562ad3ab7f45ef0bdf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4dda705fd8e57c5e106f3ac4493f6556a7f6a04ed642d4e1d8d983fa1f6e7796_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:6671a68c3f86e663034080233621f40d41aad636adc0250e534171823c351e3a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:872ff1162b4eb648273e081913ce68f8c5bc580e07b1374ccfb74756634c7095_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e051053811beccb56d48f052ff50e432878abd945d564d8405ef42e7f7806a6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:128f2cf2a80646fb4d7e22c4506892757ed5c464cc26f4a3f4e6a416eeac17b3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:510a2e1ed59563ab860d3d4d7e5ac97d08fe8278fed8ecfccf31980aa08c63ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:896d2a20256783472271eb0bebf129037f881bc3252322f7e2bfe2cd6883edd2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:dc606cc42095a21363a4d6350d1b60db8dd5c96732ca94443a38f074d5fa655c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:230989ba92a0bea5369a01af9511cc1dc8b068da4c3420b55cfa6560d7212dc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:66669c383b467ecb938486876116d936c0f856d3c65d89491ea1157542f35c6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:89f67895c220ef152b23472876d4a59700e14155ce12a3f218a307deba88b1e4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:e5fe0c5b6ed2a93a0bc1ee82970a8d0c3df7c15c795cb220d99554e43c2f8ccc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:563e710d9cdce686c76f4f331c4a96c5fd85c7256f0712002bbfd22749e9b5ae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:611dfcacd89d2e66e0cee93933e18b28c6556062497403e82559db9608ee8d61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8305c0cf94df3b8b689c5702d8aa31d977bb422c283dbe8a3c91e68accc45b19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fcfd7bdbeb9bb9514061fb23b3ed226548e8aa7bc8305495faa29f52a104832e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:1c68370bab3ad48343a816bf73b03f656a9990cedf676f4dbc72ffc5ec93a6a5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:42b69c2435599c85386e83bb0020fa941d53e696395f2806e561fa8419e251c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:98356be1dbf4b05a86818a51bfc6d1ef4a38145e9f528368ef6ba4569370d530_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d2dfc18ec3a5e1cef9651ab181d8f13f85e36974d7397cdaa0fda49341eb1904_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:060f55e843dc0b50c6424005a85970acc953dde71285fab877109bedcefbeeb0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:76eec09f2949d9156bed8dc99ccd58622828307020ef360937a098241612347d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:832fe4c7659e900fd99a318921ca9bd4cba6e44a9b91753e8a323517d207316c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:94e3b74849a7d626a08a9523b3bec28723a3e8074759e279e8dd916abecc6ade_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6bad367e43bffdd6a311016e92823863b1bf78efb90e1aa917e502f108e807d5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:df638dccd9131f3dba79a46c87a8f11f82c2ecbd62519f2860a5fe1a1902e966_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e1b19bfca82942093dd89af1c8c5bbf4e5c76c0bd263fc5442c06cdc7bbb877c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:e994b63c02564b10a06093064273539abe29e578c5aa3c92044623a29464f77c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:41d530dc75d2dbfee9d733835f5f059f6bda6dca5f9034eac37838e9fab38296_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:91a8ee0510b7c2142a4c0308ac7bbbeda16f49e87615acb9c39158bb660d45ed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:bdb5ef76c0b9d282b9e02421f5b0ca5503a0a012bd515e291f413cbbbdbfad22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:fab8e61a4ca8e7a18a7083fe477abb235774cffae9690a42ab5cfffaaa0bfb00_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:6eff121d9c84c8258ea801a4b6fea904e47bf423893d3fe82ea2c310a297c691_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:9577eeeb901dddbaa748b33333c078f5fbbb94c253c6a2680e646971ea76e379_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c047bfe82ab7112f986c2cf1b9d47c518a9fa5996147fd24ee02ba865685830b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ee635915b618dda92509d7de495a49556a07cedf82d1a901f63a884316b00141_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:146140907422e4a83573725748e9eaec0bce6349468c31999842aa858aeb3e2d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50d4a5312030853ce33a498b5de63032b54f77524a0d7420cd59be8b8528ce64_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:720757fa861e74ebeafe5e46243262f80b257f7bf0b0804a8ca300434b4e25bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:da82de4399c98b4539f8a4abb05b828090335c2b854753c67e2efa21dbf8a905_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:021d4f97f5300cb1b63d7d4525b70ecd8afc9e5dd3c4f9408d0448057e924bda_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:bf078981b6608f57c955fa112168b2c5a18b606cadf840540830c283474bc531_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c0274d626098e35af9fa6caa5c14fbe320d849bd169ae0bec53d3cf886278745_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ca30882231e13dc013b09dc24455c8709c4d2dc448ba7ec307f4b9f10dc44117_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0f23c14b150129a5cdea8d1bc5077dc7b3dbf4f8bad9c0c8d1ddbca2c19b37b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:9d74faaeb0fcbb81322fb29d1549fe4d2eef220b1afd193c466d28572dd7085d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:af65bd429d1b2ddcb7c844f302fadf7ffcbeae5f4f9227cc9d52bf90d89a4b2c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b8c10f17858a41528c99778f6d351661798a1378b37e8eba1fe67c42ef6d23ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:204b0244a6e186474005f2dda4ecb7c2360ca75a75383baa3ff396000ff7edca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c1a38e3f32b573282b88eadda1b4a892dccbed0461167cf76d70256fdd1f0bf8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:cb6fef91c9dff1bd67da03539395f9a7d0070badca9c987222e81db81812523e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d93120498d312a476026f7adf30eaa2af6eb146195632cddb7314fdc5ce86f57_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0f69178adab6b82d79ffe32fca7b9c78f622b640295c3f18fe49a1583adb83ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:551d5b84dd47a9c949eec24408b937b7daee6bae4594eed6c722cb1a27626080_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5aabcade3d000439639a6bc15dc8157015c4e3e25b00edf4b6ba21120bbac7e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e7edb0ee8f9270f272c17554669b0e3a560bac372b8632289672093db4f8c6c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:05e4877216b1ac91c90273263552a028c7ff1076ad57768cd58de699f992ece9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:0b834d105fc1b2244917667fec61fcdb645ae9901f99c06dce42c052b02f14aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a27c79f8ec588f712b89b784faa5dedfb8fdb0ef808acea4c1dcec60264b2b8c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d7ec3504620cd34cbee8a40af4e318b088aa3328c6590214b751367eb010c00b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:12b5c83611a19409b463bab76865bbfb17f93dbca208c0dcaad8da1de36d38a0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:36f974fdef715d41805448b33c5c6501e12e377769a9ba79d3c2c440018df6b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:aabac8bc7f80a0896c5621ab9fa94ef8c6e2a3c1050ac31949315b1f8d5b1e3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e075432bdeb603a57005345485ee9dfd313a301967c473fbd83ad5f49e86487a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:53ac882e0306efe295a70dc7e8b07ac639564853449c348e7eef3f2cc74a69a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:6afa3cfc72bac0da1d6ec6019aa632048569feb57b8a07e3f11f4a344ad87543_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a2dad38c6db476b9d5103d2654a9d64a5a07f739c5143420d89d75c27e331eed_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:eedece0d1e3adbf7f78da03b009322df42ec0ef1e7a4e58759d19235d389ffbe_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:0d49179e77164440c0cd4e0fff9fdacc48a250de454c09baefa3e51cae649c21_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:60b501c12975ca8a84806768b8f70a4eb32ce3909234984a29965910008de85f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:7e577866e1d390e78f8a7ab86e69350cad26fa1e7a1c1ce9de7e978088528586_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a663d5d16669212600d0accd6d60ec37799cc8715730df2db97c4add3a11a779_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:0b12feb41dd6406f42f11d131bea7cfc30fa4de461126a5cc09e30ae97c3b919_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:788d78b6e718404cfa945df47d782e4419f5381e0424b93c70a915d61f316088_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d306dc881a5e6114d8419d5ccf37a6862df55f3d954ba4b2ae1493d2e25a5a99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d33a659c81b10ad235e750738604ed9409b815be0f8c284dff76b759ea310197_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:2ada2156c6166d377eec9313f12a08015fd3480204419c176a251bc82aa87284_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:30a7d92154f64dbc9472cd1eedab3b715cccb2b1ed41ea70f5651205792010b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a8d42fc5ec68900552fe7390a2fa09b6f06e984d92d08b4d7a12b3dba5bf2202_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:ce00fa00d8f7d5bf78454b5d3e5c5514c934b33f519aedcc8f65da66d2d2d9fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:6aa35c603a831eee7f10344fb0e33d1ae39f85914176d325bddf41e04ae95a45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f53ad88d478a46ea4eb01edd25da1c8213eeda67c0ec29ee9f936399bdcbe9b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:882252639d107161b1f08518d3bf89fb40c279b4c30e725bb269222544fd88c7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:9140934f35f212e681cb904c52b33c306459dfef2aaa84b8e03d6d92938fde22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:55d1db581dcb277ee81a8731fe7d2a32d4bef7d6b0c1e9e7d5edc8ff89ca21d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:8b5500f7e303772e8d79df6815d3c535173c7dd59f37966ca534db3a8dca39e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c3c46e2b486287a41a267f14cd13c119fa81349cefea6fc12dc280d141a2b236_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e13101d909cad197b6ec636d51acbcc498bc704e06337a6ab5bf4eb2c0ea8fae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5fcf631df8ee78d52440dfd2e11f1ad8af4496fe263c3993dc39cfa8f35f4b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:673c67da576e4d54a3024ce5b920e5028ffea9aeda7b5e4dc921e43acddc0699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:bd0960c488c20a2b55cb13a42a54c97f22587b526b5be19c5170a4103d576e3b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d7ca00961585968f518b3cd065d0113def1e61fe9345eba32508c9ba50ef720f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:30871be7184e46ab5886f2c105db4afa3cac67acf6bf46be673d49764da6344c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:a769db99d4f983b3f56fcee2f1c65d626b9c990d7ce966ef78ea3a1cd6c66a8c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b6c347df6d3b0d372cf51f71e2024082f8a901991d03c9b3f7fb9fa1ac1e6413_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d3db2f96ad5efc4a9cb33156aedc6fb2bafd1f77c250d5d4d10dbbb4cfd37543_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0f1f0fa3f95540c7dafc593a5aeeadb3dd661e3a40e6b1a285954dbe97526b59_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1600fcd9aea54bceec1d17472fb68134c7a375591f165baed62612fc231e0107_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:1e467b5227063fca10da0c1de04057d8c0ac6fd1c36eacf1bb79607e89a4f8ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:ea493799f58e7f1aac44f15c6ea6abbe2049ace3f76b0afeb0799d50cf071bb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:053f5c6c1af1e18dc137366868651e6940304a53c1719558310a46b4306e7a64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:879354534a0dbb63047625926faff399a7b41be189c88e65dee20661579d4886_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89219bb6155e756b78596093c77d1cde6e475538ceeeb1f51c8f4da32f3a25c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9a69c5ba29810fee3d16f5d7132b48746fca50698ca53499958664875ef8e414_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1f3aafcc6b944bc1844b86bc83f6d3bab7eebed9e0037b4fdac69895f58eb73b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:78130d868d2df33249fef3f18072c886ac28143761d131b33dcaf7cd13a367d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a9338c1ac7c60fe4fd710900133501621bc8c25b429f55fd976853f03aee9bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:ef90003a5734827b8d004a82e1f572d2cf6afa9442c1c1029ff91c752bd8cb31_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:23d8de7747cb4563fa33fc8520da2793806fc918c2e2cebb115b607042c37e29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:45ac4009559f3d80a0e161632be4218e5a2be6c1ea746fffd6a9f324a1b74385_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7c07231e63ed59fe85b2bb0781f0fef7db1d71e7b698fcfa9fcd02e148efc28d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:fe0a6dfab16fe8bd764890d4c7cc259f803ce2382efac4a425c5c77888652937_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4d1958a3259ab8da40f9a14b2c98d183af993a0c6983183eb11e7219b4c6cad7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:f1b5244dd62e3807491a37ac929e097af6d0856b5d3001ccbbc32d3470fc520d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:45414ea039d0672aa5a31e1b76f26945e05cdbe91c61317e052829722a400f1c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:500855a0ce5e99ad6ee52e73cb90c66ec2f7b2cdcad4c44a6814bdfc9300ace6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:62105b247042d6dc719de9972e8c350b0facbae029152d3821593ec634c56ef1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:8900dec2faba88ab568f70158745e88e27641e46fc763fd32d0747dfaf0d8a6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:17e0cde54244f604522121180a4adc0112b8fb14de3f1fce2f38aeb28a5df0fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:20fc59793ebbabcf2c187533b46faf6c3734d9c1b553a344adc1aa51cf0ab683_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c2caa67aa5c7ad052fe330389ba9bd29d91008876eaf85441e4b368fe40dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:ad5a93c8d916994b7dee17652584d8df2ef61a192666bd14f8252a3ba93681d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:34953cd39d1341b7e4a3165f4c7c8ce0a5f03f6d9277f1ad3480a6829fb16e8d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:368566cc57e664c1328c9d0c79f349a17d6d744a6fd26ad9902953a40e95fa53_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:802a0f016af70253eb8f57dd44460ef6a9264f52f56de111e29f06d20744aaa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:bb25c062c9401958c64f0ae9dd45dd774db3ada8f4ff94af9bb0884708bb0267_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2240ba91cfe71e7f98d88484a2a7c271f182916f17d7f4d9e3d480aaeb75527e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:7156f960306eceaec222080d10514e562e677073f415e311d15d9547fabcc48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d766719f12034962846a71b8ae1bc090ecfc623851d53273e2310fdc7290a00d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e45e4066cb170b31589596b8633494aac6c63f82cadedd17c045f69c0876c448_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:8308d8dd75fd7f98af134b92f5a6d1874c22df29ec4616ab6e8059a8e0821ed4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:b607bc1ced9d9b9513988a0369c2995fe4524615401674b12c68cc842d673738_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c4f81dd1ff761a000671d53286fbc6a24cc8800e186587088c57dcf143f978d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f2b4854562859c2c750dc8a9795cde55cec2fd11cc984f0054247be7a6a9de3a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1ce68443c09c02dee97695066946944a2222c62c23661693d55bcb61b3954596_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:571de8d33c536084bf24ab6a2b72cf8416982a116dad960aa2ccffb006ce507a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:b09ee3eb6af1054cfed1a541912fafe433ca967ab90d61916d0fdd04d2386d77_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3053b54d7e9acffbfcb4e2a444897492d26c4f3369b00a0aa80c4e69211f2f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:250c969bd2f1bb84ca41e57f36bc63028c8248efa3c148875a363cfc808aaf58_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:5bf93684bc7119fb469e3afdf49677e9dca2f4ba330ce32db74dd0efe2c932d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:95df556fa06a56dbb2e8db4dc80b0f8b39f8d4873d21c6de03852f5c8c06b506_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c83ad2a9e847c371ca5d1256bebcda0708c1b964e27e399d595b8e225871a4ff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:59d779599077aefaddc6228dc0eb8649e6fd687e17ff9fa7e96dbedd9beb7573_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:5b2568b7592ad1123cb3983683de51587dac41698e1cc55e45b7317061144da1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a3ccdd4cd0e1b363295de72eae8336ceaf1e650b40ed5730d06329d971680ff0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:e0ff1d881a7dd7ec94aad7238013da314fb39ad5690c017a0354ec84b313ce93_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:2441fc7c377cbca27eaaec7d760a7bd1789b9e2a162c4ffce28b6024b3c7494c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aea6e8a3cdd83755efedeff1c6fb0dbf2137742caef5836c1a07452c52b2fca9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aeb9453a12aa72df2476cfa7600c9eb213a7f62595ea6835cdaaabc16e8e6d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ecdfe6f68c51c56e0a53a2c360bd6c7ed6c954eb23eb7d2ba6acdb8de8b5f4ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:019612f72de1725ddb4b2e99b04b5de678f090ac282d6a0b137991671a413392_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:32b6a8993f6d26e7d2e46ea7176a67d0fd5cbe59565c69f61f5c72ecc89ba5ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4fc36cd9ef01a5653f13d136b9a75561fbba553eaa8c59c025dee3dc19c28524_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:d32b8054d9b332cece26d3acd1d458ab9de80e5b0fbaaff0243094cd9a048f8e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:18b149118a494bebfdffa5b52c3bbbb322655f6919773b8084c2fcaab0b553fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:30524b8c717fa3d64c941eb2c76598b92920fedc17177269be8b9d24d2d54c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:6b3be55816123be7be0f4da6b5f85bae5961bafcc0d9fc153bf0f84b9bea999e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:774c9c2cabcd71451b66090c3db5798bdf6e10168e03bce1d36b3276103ef748_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1e944fc073d42d6ba1579f29154f84b5ff1a74cef63b35379b74160b3e2d262c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:937bcdf67fe41a6188e78478b4903163efb040e941c58aa6d19f0f10884f0a27_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e202db603f15bc277b9c8991accb66a25553c40c9089354debb45d5ef3a4d403_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ed55444e4dce02748d6942d1fea801f00fb86570251355473597eb30385d9976_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:72518b8d479e208b8f00f9271fe1b5b3412210cb78c28d836122f24fde0801fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ee653c47de21ac150c231ec551f1cc7dc68794e3b763a258ae1490fe90eca667_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:f6c18a785f8a83f2fc012a1f896e6ddb2e54226d88bc57743398390c16543453_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:52a73a18fe1c03ff8f816935164b30f07878808c23000a8e10d0417db76a9923_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:84aedfef1ef6c180d58b53ba03aa1e6b7ab74df1774d5597f9d7c1155c8e6ca8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9cbf52e97bb38e63973a4bcdb48a8f2c0199bc6882a12685dfeed12751a862d2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:b38e52cdd6a5d11c631b227198cb3d57a73dad5d5528c4f31a77a90be76084c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ccb3d0a1336336191c89e0364668bbc60d10db995ac0eb1c7755ced4ad28261e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:cd51ba162c22620bb91c77f2acf6adeea2c5e8f4a58f6592c49afbae7a2a3531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3964c0e9706e4f8e86f05cd978a2ba692cfe7f806d10a9b93184768ea3962cc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:6c9d345090900b0934db40bce969bee887c2cd00436c3e36f522ec61ece757ff_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:fdaa276751484cbc90798b9df12dbe8559bb38880ec0862c904556bec38b8d22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1fb16855b276bb35bf7032f7a7a32247952de6fee6126e6f9c4be2c6f5788dd4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4837da2cc63503b409aeaf301ba6e89d696cf0f03a3dfd879a97ea7d71f99008_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7901b0cae0d168928d91fde76244ee5c3583d5844013a9c4f09f623256be4d94_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:80727523cf4cbafd3ae4b7a0753229ab591dc2a64b564457b355b9371efe1749_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:160dce549e3cfc74cd09babd32abf1b491f04bacbafae85849a20133a76463ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2f724bc638f54759a367e1034cd0c791d0f803eb790c13103e3ad9420061c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a3bb0102a62cdd437b0b93bd89f06f18df2bff79e3be8f82d46988504709a8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:c0efd7206237818ff8d95ed26492f0f2104cf4678fbce6d9807f138046e1c2f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:195b4aea2120490c0aafe70ffbf5789b4e1f014cde407f5ef1cd16d53d80b624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b55d280d16b943fb079be28f18f6b1ee5e31047de5cd95d4be534e2a83555b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d3646663a18dd37e308be58ca9ca2bad416cec8eb4eebb0efc30c7d813e96c42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e0987d21d882d73ed003d122c92300a4742b308b6011ac0f0d5763505a475785_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:09c79a223c7a607d21fe3d96f9b2bea8d1d22074de938159707e398f969388b1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8521d86ea0f21c2fc5ce9eefaa5208354cc683163a916d9ab41ff5482f55c104_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b68e6721387034fa77c591391ee4f5859666822314e40dee02b54240bd472caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f768b9ece39f1b446c54105fa858a1b9f339269c4a10b8471af3cfde97cd3e61_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0865c1ced33e64ee305e74e768e1053f7e056074474775eadb9459ea8bb41030_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:bae5091ad79a1943ff040a9118814d826d40cd45d999637964eccdc2e9a50012_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:aa903f42bac05d8f9b840748f97b7b3748adefdd0c16a7f9949afc5ac4b9ef9f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:ede31994b788ccbf9509960b6e7e5e90e3d118f2aecec26bab095aa5c0b677f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:915e0bb18928632d1e9588609392e1706ec47cec9b40f85759d13aed1e8c3aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c2adc42d430173049f84c8016a936575feb01caf9e2eb0fe3c4b0870ec245c56_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25a4b67995c85399da05b71b1f8d4c29f2a3163c5616156954c3cc0f6a2ee09e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e0a44a24e0450c77a8880818ac139ba779821aedd20502429cea0e169af5ea03_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ecd57ab77779a710a903d469278c63ab133813a86810a859960a80d6d94f2cc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:077ed59a145b7ea7d64e03119a57e441d775a062917464814f603f980e19eb44_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:671e07eebd579102e545f665da20a014636d34447c7496e9817a70669128c92f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:4cc998fdafc9a451d6b10718602189c9a7f8fc6ecd1af2cddce576e9718dba35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:77490ff4bcdb456d1242bcc18778f8eae61d286d868502ac361bf8cff5c370dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:157623540536e35e28a6ef1123d9591118620c82fe10944c35ec1618cc808985_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1bb37554f2f2ca1e48214ae95384f48e3eed5d88204f66d36e63104a899af4a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5f29a52d94cf2db6a9ca036a7bdd10c7bed6ab373b4e16e3c87a4c041036a5e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9c7b39c35bb179412df2e2c20d44a993874b5b7cf9f634c16008ee41c545e8cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ee948274aed53d47b50bcc9dfde0ce9d63096a04a64765bdc47bdf758f5aba8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9316e778a117826201ecc73700c4da145cd0ec4e744f19a40dd363d2387bf759_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d1717215cc59e2afba0ac3bd5156619f6097dcdaddda8e53d55ce542723883b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e6622ff0d5a98ffe1785683b76312c7015f3632715045b8f1e72f49e7ba281fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:19b94c6754c2e31b07bf36a9ad64b99fd9536676e063869a24abb9c346a16689_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b3319703eaea0998ab906ef25e8053c1fc6419b70ab2016d7b5c2d2f363bd7dd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c8cfebdd0dcf72c73f2479336b0e4b7c6ca347b27ded18c88126ce5fc2496071_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d72549c18ed7a04853805cfee4f22b35572f79e632c421b69981e88bce5695f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2d959dc7432f8a8bb607345610e4d83f82b8b7e3d4e0f30a098f15978662d165_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:6614e9f5837313b550d004d71ef45e513e472b887e9f8b6d70a3f52d97326937_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:17ccfb5a75bd8de08493e247d42b370db5900461df5e3db22b25d912ed005e33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a45a1e9bc8e6443e504d3b5934f7a1422332c9532ad4fc721445bd440da0ec2c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1dd092857737433847b044ee8c526178b1fc8e3ceea073adc0a6632a8fcf36bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c457663002d8f50d9f10eafa314edde10f872b594cb57e674b33afe9c041d2d6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:c0f3a8c4cb5b2a527525f3d7ab51095868fc6dab428195e3179758781e2a0c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:ee81e98b01b07f5f7791d1c50a1ba2542a53a49990d9cd15f2845fffe432302b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:23a71050426e483490fa9c6b21218448f16828d51f753a35bdb9eed9a6157cb7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe7128bf73d92f8ff38434e0616d1eb10a6be70512a5f4cd1a5914eb5c3c0ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:555bc85d24383e5ddb0731ed21b88efacedc667b5c7d582553c050265bba4b4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5e6e9cfef578540d4b47de5f0b507a6a4bb3a2902c9b6f3584c3a8755343c70e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:5e767ee12687e752e2b9ddeb79b17cf08b2710c2a726560457a5bf24453e6986_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:85e7b586eebaa8e30fae265387761b815c463fc10ba9b545952d3a99b6040ea3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d585fccfd0979e6c91d6aafad774a0262d8fda40a0ab9472bcc0947bbd86701a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:fec89536ba62edfea9d73f1ed7233180078c65ab4acff18b1946994005c7d80f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1278e86d8a9d0f203d86c2759cb8000d92f5cb138ca3049d23255bef13dd7831_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3549d2be72b5d64cc2d24913e5e35a3ff525daa8d1388d159de4ebed12e6377d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7060e1687d9a28a7a4aba2f021bdd37c4c28e7dc5bfb88db50d7ecca5cd40c25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:d2fb65d0c8c994030cd20ccb333d2ca7203c900b15f08fc0104c22c1b609e8f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5fda205b3ec0a9664d3fea3a84c8d0f140fd3654af7696ebbf344eaeef7fce01_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7305e9656787ba1a4212869a3d23a17c64b486de9bbc6d0ca6ed712c932b94e3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:aae1b1bf1cf4ba38dd0b70c6403dc28564f0e75e1627ed2c470a239d0ff6c9d1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eb96ea144181c3ae2447285c018ecdf496e39317fd67321a1a3bac0dd273e404_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:3fba0f2d737be460cb819b617b778a4807e47ac6e552437c07b0377c72f91546_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:586c6af5cfeecf2f74a613df2c1998c1a463782875e815d8ab127ff84b0b4f50_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:66c48618da5bc9b8e7a045f78cbf98616d94b2fa983fece4889a9ffba39b1170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9e76caab7668c38ecaef1d7c2ead92394f819b65b3c9d2c6250925d0eb9d1f13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:1ad47c06b5506bdeb576e035f482c57ac4ba1b327e17ad84ffe05c0fc6ae4665_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:95af69a9fdc68f2a13272012340d681e6394e4d1c5ef260a7370ecfafa45b7dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9c4add542b8260776292b2f6cafeb6b0d385471406af7183fac1d30a8709e48e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bb7d336c1a0cd23e783d1644aa72668eeb3fc73ade48565b2085b5e520630fee_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:0a194b6e56b595bc4991cebdac2934ca3e35fbc8627134b224f2a14da53443e1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:8682ee09cc101fb210685e23ec9672f1c2054ea471c4a1a0d04f6652ed04ae40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:d3fd6e2fc708b88573b0266e9e53d276c43c2d3c5140dd0dce96e12cc7d2ac1f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:df09b693c9d5487004a50755c9d903efdb61fd9d7bfd51618060f7a8c1641973_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:def88411780b5029a0d2521bab4827c96ecb5b67feb25ba5f94e076d21d63666_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fd9fc87b4a01e38fb23d90e7632b6bc0012674767b9bda5c534dd199579339b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:0541d27530b566516f25d29251f3c625e3df20c17110b44dc83d3eaf5baec750_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:57c3effbabedb169307ba22ad943ba6014e5cb386e61882134428a5689df4795_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:1b61f2fbacc2a17e4b945a61c5b5014be55923a48991944f355e853bb2f3a365_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:71bc0495ba840150b3e0adb61c61cb0b2cac33ba31c65c0f039a2e4aa7935449_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:896dec49ebe89ce290d4980358951312de0d503bb33cbf63c76584c85132eb70_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3686d0e0336e3fef6b6e4d9446aebe38ff7efd91aa76671a90af485d602b685f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:37d3166e989232f8240cd3f260c36c77b3e12a117f3ec48fefa4e493bce73d4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:68e85d71c1154ff066090de0633f827780440c7dc339dfe07a48a41c4fce8f09_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ff01a765f788a17ded2a5f6cd334f43f23183b59097d0e8ebe5e6cc94fe4f52d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:84394b432751d5f9735e82ecd4e815cc81f507b1ae7f580b193ce04a5ab740af_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8f87d5636935af688fdb7b1c4663fd1b80df8d146a2f1bcad315e2f9e72aefcc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a7a45d92dac1634d5725f5e2cdcd40b6082c8618ba043ecb04cd00434c82b559_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:cd4d008c8e8419d706b0b70d44c7ab8cecd59a6028fcff7fd565080457024051_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95859458f9f15dea15ae62998edb1bc78c5ffe136b3b110ff13a0cb1fd4e329b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9fad4b9cc527ca39749cf3c01c558d5956d70c01ca421c3d0fd99a2a56d88da4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:a39c8096cd2198cab569dd87803b002d22c161d90deca9cf4e17566880bbfe8e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:bd0a1611b0976cb649401667246b250dc505832028d16b27d1e09b86f0dd8174_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:83ba0d9e149a1493b070240d32b43b1c5c35a66826f5f0ed5f31498a033932d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cf410cf3ff2cbd153eedd54f71d76d87bd36f635ef891244c5abd8d768ff8845_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d836496d5a5b3230a76b2beb231207cdec8806d056f322443eb66e83ddf26011_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:f132b384a5112fec12c064d79f522d424389298dc70fc7a4517b6d14721725c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:00eec2866fadb9748b7311135f97e135e617a5616f6ed7fa92aa49f91aad0f5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:065bb5936ed44e88c27debe69b51fbe05cee2e8153f9596ca7f315d20d2e3d9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5e4c45e261de64f732adfc3a0628473e0d881734e024f9775e2c228d717a3980_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:db561427df74ada965b1c437c12497f40aea77a9d42305a88f2af9c53ed2bcaa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:2ef18b9b3213a8ac3cbe12bb13fe7aac941cff33dfbe9c84183f2a50736f632d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:5f6dbab45b23cbea6d07e92fa6d7d3e61c41871ee7cc974e32bf435641589bd0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:85542fe6309fd1d683ccb3b1ab460ec9f6921e298b4824e05402586b91ff64aa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9c838dc6a709c5f4643708e7b5427013e2b475ebde7fab5f6e59206efb9201a1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:09b7c6a527f9ef8833a2fd559a5f215c6c2aea8b4cfa3a4a91a64242bdb9b643_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3f51d550ef430cdd236612dee33c71a334d8b6cb5f8c56ebb90f98e45336977e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:4f097f29ba5b5081a296d813c1667fa7f3c43e0e9f9c1a306f0e02c727ec5f6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:591a928130d6270c29c6b7b520948d30162a709081a90262494c4a4d1bd48bfc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:338cc85a195986c905e0cbc6eabcc378c0e6b91cdb1f6e2f0e069849388ee813_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bfe3886acc1b2f917c8fefabe686af54ba31e80d14ab4679ae80a25208df936e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e4dfdf1cf65bba2c007fd1ca0f62e70594e083b1393cd01ce19e43519549a623_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6b34cb8ce37e61c21c1fc6355082a3e79f4fd4c399ed6345c1af41ae4cc7e9b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:1c9cc7269d63603871e2c2de85f9eabccf19258932816f83f9881b21ebe2aab0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5cf1c3abbc280da729a3b7c2454b9536bc2e4d8ea2d85d472177aa776d3fa924_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b5edc30a48cfdfb1fdc487ed8ed5a46a7138674fd14b01e87d68a88629f6a461_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eb264c32ed90ac174122281f91e24eb742f4d733d04a0a14c0539ee75ae25417_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0f387953cc6ae188fe7601da09f968926a7e7d9a9ef522195a193dc5aca069d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1aecc5f7ed7c51975d444c812048bba9ee796c03d9ef85ada9a1a8981e708594_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:78dd8346da6f0cf1a56522cde3c09bcbdd6c66b366ceaa7e453f606b16fef2e6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e0f1f3a1930f690b409b9ae9847c5d0f4b390cca5f51149e19f5f750f673669a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:58371e6f3e450ac79b7505cd3ecf9414583770e7561e555be52ee43ce2bec80f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:75c33a67329bb43083632faad1f643a4907213dc5619364afc22571ef92c8449_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c5590417e494b7813c8f4ff406bfd367a59de59a962bf2cbe00830c0bd2ec33f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eeb378d7a2199de812a651634bc1f7d6faef1cabb7406c9d5ae6188a17fcd874_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:58d68823255b06471beeb3c1736a29ed04939a2a3845745eb10cecaebe2b142f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:7324a5db8ff38c7753a81109046ff3d5bff501a48fce1b5377950d0fa1ded3d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a970e5120daa85e58856716369e0459e0865fc1f5d6976dace6182ef84c33634_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:e70bb86ead60f8e76993bb6d1f88f0dbc4a72a976d9eb0ff3defc7f6da2e43e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:0087a1121fa0f0df97a697059bf6ea6b91035b30ab32a2ff2fb9400db0308330_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:141cc55bba17387db12eea6c0ba5993701276bbf16ff0b7aab74ab94ba51bf78_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2b4951358579e90c8387e51fe308f795bf828864ff7d94c57e6d92d4760bd47a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a696d7c79dde85c349ed128e0e0600403c8c740f49b391d85c69d495e09b3aed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:0136107c77ad6d0ff3e9e79263ab83c8c84e525e10b670a3f6adb70d093062e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3fa828ed665bbae33a38a2bf90d381ecd75d24c7f9116644a72ccb6ffd2ce3bc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf5f2014227017002d7766fb894df09fb69427bcf93f23d197a77b36130457c8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:fd43485a6691a30d75d12fa08e2f2584adddc22e6ad4ef244513b657e294114d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b00e9a7c3466d329f18d3daeda10def48a83c2327abb14c25baac74ef5522e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:90036193fd35574566324f79e5a210726b33c37cbad093f449c0d19f8ec52802_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:91ff6eb28ea5d8ffccc15d9cb998aa34b86f2756be968d3f7931a7cd460425b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c31070263b1d9ef262c0e319503121ab1c5025d2a94302dcc2d84bfe43fb2dd7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:ab0bc25a4fb0bb624650d4f2782d9507becd391524cbd67f9dfa1ba816ada90a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:e988feee8c45d924a01faa3e08f1bbe03ceba9897345eb4886228354b2590b78_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:268bdb786e70a08383a57b0bcf5388088d81a5739cb2bcfaea61893d8d35a269_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:47bc1736cf4ed78404eb1e797143d386cfb8d4000a2c82f32a650b7dab52cca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6cdcc9717733139a260e8f20a1e7addeaf432f07388c684fdb8b503f97ed8726_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ebaf17c68dc5af3a720451f47dbf8099b4af0600be3478f7a20d59b33e036fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3fe62276d1ec04ad5c6c27038e1151918d513a89983bc3305007c1aa9382e50c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:5dc8a779ca77247d1b9651e0483aa59433469d929d7b56123c8258b0c27fcfec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:c39c48b327f2d5eb00a2bcb01ee17cfe70e7f2ccf367206fb2acfc9c252f817d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:cee67a1f8b61a2dbaf142030f4bd24ae643a2d44ae271a09fa438d201d5f930f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:d8ec5b7891150ec181981dbc49b737e0ffbf51bf6f884352609e5e8c56b1d1b3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e3808f7420471ceee872ada2cdb3032e156a42d96893a823267b70a3834d2974_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f48c12f8071dd73a16f2ae7d952e976cc5e3cb7780681901c7d5775e311d8c04_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f7ffa4197a15391f636d1dd824030ad96ae74ce480f32da4fd797952a6b90c23_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:124cdef89a1ad023956e7062d92f47e43a00e21bfd337116948b9a4f0abb6efa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1983b9fa74eac403e461c470681546f8b96c9f9f5baca3f2366e2bfc46c7109a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8daaa58f146e64e55b1cc82c0d4d359aee3723a3e23fbb84d988196b61afa7b0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:bdca50f8545e1329f59d265d9079e6b60593beef2b7137a8d3d53fef22c68020_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:267eb3cf7b61491b20cfeb5f15936ab4bb5432ac4edff4246c18c4bd9012b073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2842096c4ac1e8677ba2b460a41fe40efa5c964a34036cd3792fd6bb75d48533_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:951e33c24a33d80230c7f14452e356bc1fd7e276ea436bd146e8397ff1d3085b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:e8e2f7e231fb6eff6b891a6b3a227c2a16d6f26cef6ff5b1849b4b2c19775191_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:124d4a5e4ce24a8f6decab1a1b172268ac4b766d74799496ebfd72141da12954_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1cc47796404cd32e73a8a777c7147a60ac05e5ec0504c7b99cb8ff9111ae21fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:66cdd1f2326cac208e9f45ee0bd0051cdbb6458af0a90b699085c58b113efaec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bd8a0124f2ecb547878ff344a37a83fd406b26bf5fa6f650a170428ba878263c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:38339cd4b3940caf5aebd61e5f8260ec5255a308f9d323f6a983f151216ffa9b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7c1fcd95cf54d1b74eeedab8b29c0c9c511c4e213894a06ab6281387a5bed034_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b2dec3b4366f3d54e0cf0d471eef4bd0e87901bbe7018f98c433c650ea2fffa0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:dc5d8fa7d4d5c1da7814898bdfcfe0560cf8b06bc2ea03d2fe4ebd587513632c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4f041fe8154a0a2cb6a52b920eb3a43500ce0855c152b524306e2bda9044d799_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:6a165e996e40b0bdfc5ed9019eaca88a7f32d94523166c3a0311cf1ba8357ee3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:829a8cdb469d9e04ef52713c7521ed72a148446e844450760ddbe72f7aa6d56e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:981c24feda473273fbd90047eb592ec78ae1c2be1ea84247fa56d5a1ad9380c2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1e12e913ed885eb4647d68020bd957293801f0af005b02a124c70e770e88bb0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:560b105910e5e7dfda0e157e6e382b9a6e4f677402cef57657f346108ce66d29_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:7afabe86cb351d4dc8de07a745f42a36622d6580f9f8e537202b7d43b6350cf9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f86c82603882a9a3910408d141bfe3d9f572baab40c35273b5fb7517f4dc2772_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:131088cfaf57992171c06173d57f293d4d88177ff84c88bc809b947d38f56475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8e573643a35286883fdd811a68e5aecf9e13b86747966e8c1fc2489e698ceaba_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:97d3f33ddbec4ba5fb0b32f70100d8337c4a90179753f4379a513dd3565206b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b8dd9003bd74bcb2a5cf3a9cc1ed7ee744d5e3b4602915d2444b4bb7e6e8b4c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:34bc4552a1b6fec726e909d5c3064b327057b82571b1a591a4c9960cd24554c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:781c3baa8d7f60cf5158184a6a9f14aa5d2fe8f072c4601906e64a0d00c03fae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9e42c3f15fdb8631f434b94902da0741ce2d312c9de63cc970289a410fd93d56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e60f989dd46bf2d9820f2bf3b528b296e6b6127e6e121a3a87fe732ab52c90db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:72139191efe44121b3deace4ad25bb4a5f1343f1236009fdc315b8f3e6b65247_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:73d72b11d8711137c40e9bf26ad915fdaeb0b9a2cfda14db8844a24ebdd5dc61_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:86afd4a713429c4e3f2b7e41cd06acefec2d0d1c6575541ac1650aea74dd791f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f8b4e47936e92158b4bb30566374e6eeb9e09f5f8cf456a285a45bc79bef2601_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0cd5e7f920ac88c1e4c66d33c7be4f889ac766d8b9d1ad9e3a8ddda5b8b2bf7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2be70ba990de64ebe8d711c76c8fc91e2987789135704bf3f17af1ba6e973d33_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7dd9c1a97aa40111f669724f5fb414f26acfc9ed94d511489084d35afcd5ee9f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a607af611b309be2a598aeea9e0a088d5175610ed6bc48cccadcb5e3768155ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:090aef1f0b9f231a6b5d2f65a02f8320233ed874156c824a4db3f37d93efd76a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1b31d815f8fc917905c6b9781d4ab1901b7002a84e09ae2f761e4783445f5ee6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b409c3e03e819d90eefeea393cf63558b42632297c9ac7e9cc5b169558ad9fe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:537544c14372d0a517683525fbe97c62e7328b13694a8f10c2f1802372a608b5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:276a879e8d6822691804e1df79f39393a8d96e448fa7809b0062e0d6cef2e244_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5fa4d693a603f216a2a80237c114a2225881020ce2a461055981c16bd8bfe1d1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c0239004697109cf9c998c252b355f54bdfa7d03105fbeb2dc8a91f65b0afdaa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fda45725085a81c7ac688b0de34fd0648309eb642c5f02eabb3c14fa95f4dc48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4ec54508eb889c63d383ce9a8900485ddef72a08cdd50c5cb4533542a3c27fa9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5eb9d4dc6ba3c85e6fe80e7edd9e14c9e022e1e657d0f25c12b05891a1b56ad1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:c1de91088001480034a7aabef5a09aa4e8f56db826102ad48b6cd78ae1ea7c4f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:dd33af10df89b5d18b174d153bd7b59fb1e0aeecd68b37b6c35dc43fa25b5d30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1ae02df1652b5ac4410e6c2bad40a9a550474fd4fa9c9e9ba18958d4a329c6f7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:324c1f240210cfde3d10c726b9852a56d6beb935c4ccef4fe5d6931716782771_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:37f91756031d64ac5eac64ca9f6fcc0df390b09be5cdba16a60f684185a4254a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d35729bc89a0384c12ff35db00db042a6bff1ed33090a54e6d604a37547d1250_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4eb238505d7f65c8428d9ee028575e0f5f05eac417636cc39113a550f903fa21_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8346e86b3f86a3aa83d0bb8012537e2ba8fb289eb8af964cb9f2d7f6a5319d95_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cddfd9c7326edbb1834259a0c011557e2afba66c1533f9821b378783169b8ce9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:efd7b9198e69bf3ddd093bca23900b247bf3391a39879d6ff59e914d6a49c25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2e7a373b363c40ca41b34c67836c5cab00a9ef3d1e8379f111a4c96aca6b863f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:33a402e8be90fcfccf42c2609ac7160ff268cc860bab0cc129cabc9e0ebb9a36_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:53e8924e7807310c02812e27c0bbfd60bfe6312a2b5d92d4d0ae815c2a837b8d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d25f9e184045a5bc16ffa537c25b6eef0e6a9b560f2b7e8c328235aa9d1ca1ef_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:22854455eb273e689ee5072c066fc6f0de82605f11f1520a2d3a9153e208e6fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:594971ee2e5b4ff3b15c20ff97d5ccdc276f605cd017e8d248476ab0b09ef52a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:0710d69bb691ec7b7218ee66c4a0971bad23b7da031b3a999c58cfcfea44685d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:4c08519736d19e06490ec19e87b6e5ccf3845876e7655a43262957fd9310873d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e070e947ee05f3d581133df3abbcc883d52c7c736395d38761ce787117aa656_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:951dc5037f65ae453d86823fc221b6ebf64e4e27664b9fc0eb6f480feeae7b13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:290844c53d9805019bd0f5c6df3423e634e46f5dcfc359f005ac8fcb992051c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:8449455985296103fd3dc32328558ea78d7dc78bb9c3e9842a02cfbd264fa563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3b63eeb129fe97b199e8f4e0aa027b9b45a05c6bf0a245defa005dc2bdc9c8a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d87d6cb6df4f587084b8d6ed03c1b17d80349f6755f18bcee861d8d1d2cdc67e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f11ba0e1d8bd59726f83060b937d4b043b80a762703d58175b95e011db3751be_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:fd9b28f64b517dd48c671b76b54f512217e6a26d6b8a4fe631feddb1ffc3c732_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3cf232eeb738834d05e7d6e977578dfaa09b0560fb8f455b59f7085a4263799c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:7e234e50dee6f3e9225dd23897642280eb759d0acd3c0648f9799b26dc1ff033_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:8ef69d63341f995dbb454223d0bb2601c8270b6f7c2de0b81937376c52cf2f02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:bba56d8d299503c1ba430439e770755a0dc506409a0a89b6ed97fcafe443cc76_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:93f8f5c6b90b24d693fd6ad9861b4318b07718f7ad758dc5b908edd0abf990c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c594e67c8923393a384a1c7dfc34867da6869b4a930b9423d54d9bd3a6e810d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cb6dd45060ee070f717b028f2aa305007b73857119ebe364a37ff50f55a3b344_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:d70b527e0a62e630dc633b04e871dc6850a71dff9597ff192adc75198feed3bd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:245adeb0894275c1978420e91ea9d497655b23ddd9c85ea2cd1830edaed6cb0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:36a48781f5304499d27c93c66f30f36ff9481d3a4859500f1cda111e10f4a9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:663d9a87f78ceb8dc21e5c6a6b8115ea35739e1085a591d01ba25773016ea76c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d04fdf9a1f7eed4186da3b5bce15f03052301b02769bc6d8b6d2fa2772a55f99_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:052b6d099aaedac54efaa230a3152302b02aa08a56183c874768c9532e4bfb6e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:062c50bc7037a55ad949730c0ca514a7210996c8b4db2362d8e23ffc79a61dfa_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:682afd904b583cd0812010718e39fd08c253680875babe98d5d2f89b0c3bd136_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e81c8540e787ae0c3b73aa63b16f47d51e73d4cfffadc7ab684524050ea89d85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3e1dca44544f6a12cc9e00b65741923b3bf5be43b431a2abaecf6100d6f9f06b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:7ee2bd3fc7287e0c38b2599778263fde1d368055cba55ad45262245260a6485d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a8a9235d522507ec5ed9a419cdf910a5526804e1cc92994a7e92ef8dae88844d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:e18fbb2dfb14deabc56cb69f0ea2535080f6b6ee764e674d0e5d30d67bb8178d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55163cb1361b66e095fb2265b52878bfae605f66f3c1dfc3d6ba72c16376e385_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9daa68c8b9f36bef8e7aac02c21272a7164dec8e1f7d1f6056a05123529076de_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f175eab45bc32c9af9e3a0672438c46a45fd0908e54f194758bf0c75110b1d66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:f745b765b6fdf25828b7ff15c36220ac3bb018c31fcc5ba15e7a6a7ad8586065_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2331b3f9246e0e1a4d26ba7c5d288b01b2406efd4aed6cd951d3ad61767d6c10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:84b6173511308fce2e87aaf8094f11c0817e84eb14f8e0981953af7ccc7d6ea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d3470e6589d622d95892c4f42fd22311a0a84a1dc0c5ad2fced14909feda9e14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d94a27058e64acb0614573c20916937687c069ab1d632e17d3373ebbcd9c6e9e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:86d74ae2f9c083b909cc7623c702c954e326efb85cced52bab346fb5e8fb2d88_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8ca222f8403830010838d51075d53b1aa4ed6f6f45371a6e12fd2153c4ba28af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:dde884106ad0e7967f646093b6ee2eb1f59c5bd57c8e54f0c26f03f2e0bfb2d2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:fb70ee53ed23a565bc52c49d7471999691cf53d16b2701ead8508ed55d570d9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3cbcca3ce21b99e503f7326a19fc46896a19a09401e79cfd2253d2e73b108042_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5af7a46e848ba71dee6370941dd7ee5486f66400dec9a8c7c06f8e6c70ffade4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a4eec793d9a7208cae96ffed882c94ff24c03fac30a6cdbe4cee805653565eda_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:ff74f20b7e6ca89ab04e7d987b330e1d37d02c94f6c09015abdb1f4e49b5b2a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:0d18501cd2e6630954594a570cac99529201775c282cc960b9bddf90723a617d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:8494594e75d4bbc9dbd1d0a4d207daaef32b81b4654dc32634aab769794603ae_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:89141fc54f46d62268e84f316709309c1809c20e3f53ab8a218191a6d87fe235_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:fede7d3824875135f9a423cd49aea866f79491ca38d6c8e7da6d820851713394_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:172bd176af5970573db1da95963250dfe22a5fd217b508c89e7ead93b3c0621d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:37f8226372ab17a0218529d2e46886b91053847130d60f5dfdbd3f4fcec27548_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:87ccabe6954da5e98f92f271e5fa7a29c9947223786b2aaaea44b9bf882b3a4e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:b9fe9f06328710d649fdfd7476d7d8e448b2a60d927714e22f46a2f34683f4e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:2398a5303506729528f2f5b15e5257f15f1324f9801f6b1837750821432d73ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:f960acacf1086deaeaa3f2b17e5e28f55b8eaac29d0023b050d3a2ebf1497424_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:fbef897a61bf9c3b41180db2f44a20b49f1ddbd3c4fa4bc25bb79b026bf371fc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:671b123627ae60281aa8bfb79e73156ce7cb08e07a2187366912dd3f4825403a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:3ba21d81b9a24ff61dfa5f6639a684bb071487e8bb8709156ab34ddc640b9ccb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:f9cad0a6ec58fbd5197550a6172237dfdef5f01d16aa94e8d5a98e840bc7dcb6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6b86c4e459db6bde83adf89953ab8bb0f40796806e8457d7589ed6fa1a80d7d7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:859ea895d3578c7a5169fcff64f1fa45ef5a6b0012da736574a69b15d16beb82_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:adbdd3fa8a0e9418baf0878eeb87504434b3c1885590fb8cfcdfd5d14eb01fd8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:da74e6b85fd981e333b061145514f69ef62edb787ac04fda326d30efa8105f33_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:973f7391addc59e3fe2e039574b42d2b172dd5a69a0b31c9fca025f9e8816d89_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b05a303560d4edf4d8452007089d18a4b771b24c1228ccc1acde08d3fab93a20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b22d64925223f1ea8db9fd169b596aeda942b60466a404b4261a47cafc9b2126_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:b681d938498e9bd0bf3a9ffe1693cd23e993fb6d45e1b54f6f8e533a39407fad_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects"
}
]
}
RHSA-2026:27063
Vulnerability from csaf_redhat - Published: 2026-06-23 08:26 - Updated: 2026-06-29 19:34A 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.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
Workaround
|
A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
Workaround
|
A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
A flaw was found in Axios, a promise-based HTTP client, specifically in its Node.js HTTP adapter. When Axios is configured to use an authenticated proxy and follows a redirect, it may inadvertently send the Proxy-Authorization header, containing proxy credentials, to the redirect target. This can lead to the disclosure of sensitive proxy credentials to an unintended remote server.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
Workaround
|
A flaw was found in Axios. During specific proxy-to-direct redirect flows in the Node.js HTTP adapter, a remote attacker could exploit this vulnerability. The Proxy-Authorization header, which contains proxy credentials and is intended only for the outbound proxy, may be forwarded to the final redirected origin. This can lead to the disclosure of sensitive proxy credentials to an unintended third party.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
Workaround
|
A flaw was found in Axios, a promise-based HTTP client. When using the fetch adapter, Axios did not properly enforce configured request and response size limits. This vulnerability allows a remote attacker, through a malicious or compromised server, or by supplying a large data URL, to send or receive oversized data bodies. This can lead to resource exhaustion in server-side applications, resulting in a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
Workaround
|
A flaw was found in Axios, a promise-based HTTP client. This vulnerability occurs because Axios does not properly normalize IPv4-mapped IPv6 addresses. When a NO_PROXY setting is configured to block direct access to specific IPv4 addresses, an attacker can bypass this restriction by using the IPv4-mapped IPv6 form of the address in a request URL. This allows the request to be routed through the proxy, potentially exposing internal services or sensitive information that should otherwise be inaccessible.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
Workaround
|
A flaw was found in Axios, a promise-based HTTP client. This vulnerability involves prototype pollution gadgets in the request configuration processing. If another vulnerability has already polluted the Object.prototype.transformResponse, affected Axios versions may incorrectly interpret this inherited value as part of the request configuration or as an option validator. Axios does not itself create the prototype pollution. Exploitability requires a separate prototype-pollution vulnerability or equivalent attacker control over Object.prototype before Axios creates a request.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
Workaround
|
A flaw was found in Axios. A remote attacker, by influencing the XSRF cookie name in a browser environment, could cause the application to construct a regular expression that leads to excessive processing. This can result in a client-side Denial of Service (DoS), where the affected browser tab may freeze, impacting the availability of the application for the user.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
Workaround
|
A flaw was found in the OpenShift Router. When a Route has `insecureEdgeTerminationPolicy` set to Allow, the HTTP frontend does not remove `X-SSL-Client-*` headers from incoming requests. This allows an unauthenticated attacker to send plain HTTP requests with crafted `X-SSL-Client-*` headers. As a result, backends relying on these headers for mutual TLS (Transport Layer Security) authentication can be bypassed, enabling the attacker to impersonate client certificate identities.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.20.26 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.20.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.20.26. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:27059\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:27063",
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
},
{
"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/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35469",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/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-44486",
"url": "https://access.redhat.com/security/cve/CVE-2026-44486"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-44487",
"url": "https://access.redhat.com/security/cve/CVE-2026-44487"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-44488",
"url": "https://access.redhat.com/security/cve/CVE-2026-44488"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-44492",
"url": "https://access.redhat.com/security/cve/CVE-2026-44492"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-44495",
"url": "https://access.redhat.com/security/cve/CVE-2026-44495"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-44496",
"url": "https://access.redhat.com/security/cve/CVE-2026-44496"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-46579",
"url": "https://access.redhat.com/security/cve/CVE-2026-46579"
},
{
"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_27063.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.20.26 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T19:34:31+00:00",
"generator": {
"date": "2026-06-29T19:34:31+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:27063",
"initial_release_date": "2026-06-23T08:26:48+00:00",
"revision_history": [
{
"date": "2026-06-23T08:26:48+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-23T08:27:27+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T19:34:31+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.20",
"product": {
"name": "Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781688743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Adcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1781536224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781111957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Aa1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781181888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Abf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781291207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Ac7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781660144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Adcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1781523440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1781177483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Afe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1781297305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781695012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781694981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781196942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781639027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ab081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781197253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781687639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781626550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Aebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781638907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Acb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781133392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781270924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781694073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781572534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781196883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781567010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Adb6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781178474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781566906"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781688743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781111957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781181888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781291207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781660144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Aa66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781695012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Ac37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781694981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ae926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781196942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781639027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781197253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ae6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781687639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781626550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Ae7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781638907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ac346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781133392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781270924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781694073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781572534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781196883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781567010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781178474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781566906"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781688743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Af7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781111957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Aee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781181888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781291207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Af01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781660144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Af811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781695012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781694981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Aecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781196942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Ad3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781639027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781197253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ab9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781687639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781626550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781638907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ab66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781133392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781270924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Acbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781694073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781572534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781196883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781567010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781178474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Aad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781566906"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781688743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-ui-rhel9@sha256%3Afe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9\u0026tag=1781688772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1781536224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781111957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Afdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781181888"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781291207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781660144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Ac731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1781523440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1781177483"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Aad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1781297305"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781695012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781694981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781196942"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781639027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781197253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ab3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781687639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781626550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781638907"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781133392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781270924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781694073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781572534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781196883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781567010"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781178474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ababce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781566906"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64 as a component of Red Hat OpenShift Container Platform 4.20",
"product_id": "Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
}
]
},
"vulnerabilities": [
{
"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.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"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.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
},
"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-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
}
],
"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.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"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.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_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-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
},
{
"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/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
},
"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-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-35469",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-13T03:52:35+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457729"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting OpenShift Container Platform. An attacker with specific elevated cluster roles, such as those permitting pod port forwarding, execution, attachment, or node proxying, could exploit a vulnerability in the SPDY streaming code of Kubelet, CRI-O, and kube-apiserver, leading to unresponsiveness of these critical components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "RHBZ#2457729",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457729"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35469",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469"
}
],
"release_date": "2026-04-13T23:59:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
},
{
"category": "workaround",
"details": "To mitigate this issue, review and restrict the assignment of Kubernetes cluster roles `pods/portforward (create)`, `pods/exec (create)`, `pods/attach (create)`, and `nodes/proxy (get/create)` to untrusted users or service accounts. Ensure that only authorized and necessary entities possess these permissions. Modifying RBAC policies can impact the functionality of applications and services that rely on these permissions; careful testing is recommended.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
},
{
"cve": "CVE-2026-40895",
"cwe": {
"id": "CWE-212",
"name": "Improper Removal of Sensitive Information Before Storage or Transfer"
},
"discovery_date": "2026-04-21T21:02:33.280553+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460297"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in follow-redirects. When an HTTP request follows a cross-domain redirect (a redirection to a different domain), custom authentication headers, such as X-API-Key or X-Auth-Token, are not properly stripped. This allows these sensitive headers to be forwarded verbatim to the redirect target, potentially leading to the unintended disclosure of authentication information to an untrusted third party.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
},
"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-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "follow-redirects: follow-redirects: Information disclosure via cross-domain redirects"
},
{
"cve": "CVE-2026-44486",
"cwe": {
"id": "CWE-201",
"name": "Insertion of Sensitive Information Into Sent Data"
},
"discovery_date": "2026-06-11T17:01:30.944384+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2487947"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client, specifically in its Node.js HTTP adapter. When Axios is configured to use an authenticated proxy and follows a redirect, it may inadvertently send the Proxy-Authorization header, containing proxy credentials, to the redirect target. This can lead to the disclosure of sensitive proxy credentials to an unintended remote server.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Information disclosure of proxy credentials via HTTP redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-44486"
},
{
"category": "external",
"summary": "RHBZ#2487947",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2487947"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-44486",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44486"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-44486",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44486"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-j5f8-grm9-p9fc",
"url": "https://github.com/axios/axios/security/advisories/GHSA-j5f8-grm9-p9fc"
}
],
"release_date": "2026-06-11T15:39:07.714000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Information disclosure of proxy credentials via HTTP redirects"
},
{
"cve": "CVE-2026-44487",
"cwe": {
"id": "CWE-201",
"name": "Insertion of Sensitive Information Into Sent Data"
},
"discovery_date": "2026-06-11T17:01:34.091476+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2487948"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios. During specific proxy-to-direct redirect flows in the Node.js HTTP adapter, a remote attacker could exploit this vulnerability. The Proxy-Authorization header, which contains proxy credentials and is intended only for the outbound proxy, may be forwarded to the final redirected origin. This can lead to the disclosure of sensitive proxy credentials to an unintended third party.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Information disclosure of proxy credentials via redirect flows",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-44487"
},
{
"category": "external",
"summary": "RHBZ#2487948",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2487948"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-44487",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44487"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-44487",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44487"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-p92q-9vqr-4j8v",
"url": "https://github.com/axios/axios/security/advisories/GHSA-p92q-9vqr-4j8v"
}
],
"release_date": "2026-06-11T15:38:25.150000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Information disclosure of proxy credentials via redirect flows"
},
{
"cve": "CVE-2026-44488",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-06-11T17:01:36.836488+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2487949"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. When using the fetch adapter, Axios did not properly enforce configured request and response size limits. This vulnerability allows a remote attacker, through a malicious or compromised server, or by supplying a large data URL, to send or receive oversized data bodies. This can lead to resource exhaustion in server-side applications, resulting in a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Denial of Service due to unenforced request and response size limits",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-44488"
},
{
"category": "external",
"summary": "RHBZ#2487949",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2487949"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-44488",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44488"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-44488",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44488"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-777c-7fjr-54vf",
"url": "https://github.com/axios/axios/security/advisories/GHSA-777c-7fjr-54vf"
}
],
"release_date": "2026-06-11T15:37:38.013000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Denial of Service due to unenforced request and response size limits"
},
{
"cve": "CVE-2026-44492",
"cwe": {
"id": "CWE-289",
"name": "Authentication Bypass by Alternate Name"
},
"discovery_date": "2026-06-11T17:00:56.761751+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2487938"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. This vulnerability occurs because Axios does not properly normalize IPv4-mapped IPv6 addresses. When a NO_PROXY setting is configured to block direct access to specific IPv4 addresses, an attacker can bypass this restriction by using the IPv4-mapped IPv6 form of the address in a request URL. This allows the request to be routed through the proxy, potentially exposing internal services or sensitive information that should otherwise be inaccessible.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Proxy bypass via IPv4-mapped IPv6 address non-normalization",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-44492"
},
{
"category": "external",
"summary": "RHBZ#2487938",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2487938"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-44492",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44492"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-44492",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44492"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-pjwm-pj3p-43mv",
"url": "https://github.com/axios/axios/security/advisories/GHSA-pjwm-pj3p-43mv"
}
],
"release_date": "2026-06-11T15:29:13.890000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.6,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Proxy bypass via IPv4-mapped IPv6 address non-normalization"
},
{
"cve": "CVE-2026-44495",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-06-11T17:00:53.999811+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2487937"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. This vulnerability involves prototype pollution gadgets in the request configuration processing. If another vulnerability has already polluted the Object.prototype.transformResponse, affected Axios versions may incorrectly interpret this inherited value as part of the request configuration or as an option validator. Axios does not itself create the prototype pollution. Exploitability requires a separate prototype-pollution vulnerability or equivalent attacker control over Object.prototype before Axios creates a request.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Information disclosure due to prototype pollution 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": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-44495"
},
{
"category": "external",
"summary": "RHBZ#2487937",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2487937"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-44495",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44495"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-44495",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44495"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-3g43-6gmg-66jw",
"url": "https://github.com/axios/axios/security/advisories/GHSA-3g43-6gmg-66jw"
}
],
"release_date": "2026-06-11T15:33:12.433000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Information disclosure due to prototype pollution vulnerability"
},
{
"cve": "CVE-2026-44496",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"discovery_date": "2026-06-11T17:01:15.856386+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2487943"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios. A remote attacker, by influencing the XSRF cookie name in a browser environment, could cause the application to construct a regular expression that leads to excessive processing. This can result in a client-side Denial of Service (DoS), where the affected browser tab may freeze, impacting the availability of the application for the user.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Client-side Denial of Service via unescaped regex metacharacters in XSRF cookie name",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-44496"
},
{
"category": "external",
"summary": "RHBZ#2487943",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2487943"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-44496",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-44496"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-44496",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-44496"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-hfxv-24rg-xrqf",
"url": "https://github.com/axios/axios/security/advisories/GHSA-hfxv-24rg-xrqf"
}
],
"release_date": "2026-06-11T15:34:28.492000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Client-side Denial of Service via unescaped regex metacharacters in XSRF cookie name"
},
{
"acknowledgments": [
{
"names": [
"Ricardo Pchevuzinske Katz"
],
"organization": "Red Hat",
"summary": "This issue was discovered by Red Hat."
}
],
"cve": "CVE-2026-46579",
"cwe": {
"id": "CWE-287",
"name": "Improper Authentication"
},
"discovery_date": "2026-04-17T20:10:23+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2483181"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the OpenShift Router. When a Route has `insecureEdgeTerminationPolicy` set to Allow, the HTTP frontend does not remove `X-SSL-Client-*` headers from incoming requests. This allows an unauthenticated attacker to send plain HTTP requests with crafted `X-SSL-Client-*` headers. As a result, backends relying on these headers for mutual TLS (Transport Layer Security) authentication can be bypassed, enabling the attacker to impersonate client certificate identities.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openshift/router: openshift/router: mTLS client certificate spoofing via unstripped X-SSL-Client headers on HTTP frontend",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-46579"
},
{
"category": "external",
"summary": "RHBZ#2483181",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2483181"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-46579",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46579"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46579",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46579"
}
],
"release_date": "2026-04-17T20:10:23+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-23T08:26:48+00:00",
"details": "For OpenShift Container Platform 4.20 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:5a2bec1f74236deb9519ab5232146c57d2afdb8f8db6773abbb50027150eb8ad\n\n (For s390x architecture)\n The image digest is sha256:168bf6fa86ad2dae55203e833352d47a1284c4db4f42a87bfe8555da97a4f5b3\n\n (For ppc64le architecture)\n The image digest is sha256:df8f0087646c952daae01c4f5ab625bdb95b317cfa790f6841309e8d131c6f89\n\n (For aarch64 architecture)\n The image digest is sha256:2e98640a8f567bb8aeab95719d0fea4048658e7edb093377d9ca08262d4e53f0\n\nAll OpenShift Container Platform 4.20 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27063"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:3bbdf23c749d068f766d18fccd5e5ae23ff90a5565d8f5101b551113cfb6c123_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:979314a23724ebc8de0be49aa32b8f420179125c695ca48549f541e59337e1b2_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:98636cb3a8c474d6564ee277234bfa6f8bd4bc74a8a5327c4eb21b26c2c9d626_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7cbd75d0671200c3af39c481f36478676c328f47692c1f2c1b46429470eb9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3cb1ef218d08069307b9cb1013d1a3814567df8ec55f64ddd9b72f5790a03f3c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:450a1c77d36771a98dfa96bb128a066192871becc7ff3edd5da3f9839de5b87b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:647e915e236daa81b0001b61dcfdbea5cb999a844ec0d52f7d0dd4e224cbcbb9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:bf4b64740a63a1f6e541d92128c9237fdd813a52536ed1273983946e3c215f7f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:203ec72895a613490e467305fd2ad96e620d4ea8631b44117be4f7227cb3d162_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86e58cc04993c9ebb62ff13f8c9e38fcb1dd1bbdd7f5474a8c6de3a73b628492_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:89275d5e3701e681b789e2c80377bdc124c617ccf1fea892fcd9342647ee4e13_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/network-tools-rhel9@sha256:8ec539591813dd64b6e220480649aceb0f20ac8dbaccf29f5852805fe2d653c6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:06e3ee0cbdc2f1b3ad5e51bacf75c05cf7f156f8ab0ab451ae0d7849095c35a4_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8dc3a7e099280b53633b6dc3bddcade1de7720e6b26689b99b13f146675c4f5b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e926f2b13e47bf18d2109a39fb2023f112df68ce206f797f60aabe688b203bde_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ecd2f1b4154e0e1a82956378e620ff618383e341b7ad7571c4c1fbec55a2db5b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:29d98fcb36f650c7bc94edf306894f4add6d8470dd75ef1b9d2f86a96f7eeefb_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b3a9fee448a212907122556f9d2b6441122cd09f03fd85b953db0f06527cd841_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9a359fca4093efb9deaf581963244e67abfc7afc3ec6df558cc1525adaed085_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:e6d546338774b75c347f1c00f01897d2c18bcc02aae73801c888a1c0bc7159a9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:fe589677a60e47f089add4a8662d7a5bb018d149bd40951450afcad9459d0868_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0265e523cbb12746ce518597e1f2ae8dfed5a4f108410d74a284429511d7dd80_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:06833bd27e40dd3a770cac2b4bc943cbbcc005409df8bcb8da465c2f4cfe25e3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3e44064c6c2f51f5d59267cb3be081e525227b412f84cdf982239a7340c5a0b6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:89c39898050cee289a3d05bace758ad4551a9dcb4b55467dff1b70ef304e227a_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:7b5d98fb5c01c84f70fdd05e5ca4ea35f580eacf123fd70744dd207e90ac8ecc_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:dcb687dac46dfcb5190a00860a358b63304e344ee233605c69442ae784df50a7_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5571dc60fd35ac8fc45f1632859804ec7f6b261b131bd8a1f68ab4de49c79a08_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:638bf4691fd54f1854134c0a350a18956f2d4e33367775c35882bbffad8a085e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e7665d0ff02bafdf87f7cf26d8f9364504b6019a582381408cf5f6bbb8a6b2c0_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ebf9d8e110fdd0eb92437bb9948019dd5caaaa13dff3bbdacf99caf98a11f701_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:49bd024d3d99fb1ad7bab883c7e5f660183c3146ca927b6d7ddceeeddfcba157_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b66789383841ab46f31f467fa319ec01d202f7f69739ff4d251b4af0a6c9e6e6_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:c346d06d42db2adc95274fdad624981452835dde285b7f44bf72a8d362ce73bb_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cb690ce1b790312c809730ce08830a3fd43ff06a3136c57256952cd7bbe13d55_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:624021ed9404e77d1417862044df4b04fa3fe3dc026b03ea54a2b87d4376d387_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a1bd5af44e35c68359b7bc642c195a557a25e15f41124b5874fc1e51ee299bf3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ee697ce277502f25541e9973db31e142af9c4419849a50d0a020c61afcc48c33_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:fdea6c63c595dc8b02cef15286aeb3ddc3bfe0193de45201d0cfb11a3bcd589f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:522a646576645bcbf84710a97c8f89c577d55a22f1d8d1c868135d1d8ecbe34c_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:81c0cf537924384b7ef75b604e5941fc51fe049641622c4b772852788da14097_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:89f57abd15554b50bd27019be5438490bd6207d18d457607603c511a054f1b7a_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-console-rhel9@sha256:9c0de5f2f719b24731c4a5aaa2e1b40d661e67a72fe0d3caac4271f9e9d5ead5_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1b57935b2c9a488ef21e6d66ad07c2e25a1737b0e0641319fbe7710a24e01e4b_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:365ac58c2af582f184d3f62beaa48d15f3981e4d8da0cbbb8c93ec6986243b51_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:38eb1cac78fe34949a20dbc1cc949f4d2861d9db7ada1de0e5ed29279901f408_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:d3125750bd9da51e7a35ef16af331b8a2b3dc157b3fa471629fb616322e35fc9_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1a8f96819a4c2b6c5d8d3d16e7f2d86cd98fec4d54aadc93d577114787713537_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:640edf3a82ee8b13796051e101e647b2378da417e14a1dff18ce501e4fd37bb3_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:c7a464e13822761ca8082145086084a7ee99dac69eaf2499ae3a216840866dac_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f01be0e96604d69f4c4e9e4363da99fab82220b72e34accaedd7c62f3e510f2d_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:050d6a3c89ac2be7115949ac33afe56a690b5d56775be5f1f004902ba056da20_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3170599804e9cf0f6ee3edf955f2d9b34a462a3cf1fb667a2db53ccc9498724c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:74ed6313652eb904df6f81151b9c829c01f7304c6872071a100a65ada5679978_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8f505384a22a337f1ac2c2b76051e4cee2a60b638cebe734816ff49bb1fb0b9f_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7154ccb28376771fbbb8754ddd010672548c43fbec531e0cfdf3007a8efd882c_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:7c254637daf1b7564394c9a6425b9dec8a711e27ccfc659d5a55471c218b14cd_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:ad266469369890878063a4e0793c144bf73be0c963be65f154f3e8988c666fe2_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:fe01dc34d6ef1faf09be0e5b4fd7c9c0db4baafc8fdd77ab61d25167c80e8a53_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c731759826eeaffcc98dcc86e890adc3dcbc3497761bbebe04265892e782963d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:dcaeb66077a2e78128d7ddc7b03ec9501f65c14f068948a9fbb82245927f2d04_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:06a4c88d17ea03dbcaf83bfbf36d42ae4e288218477c11ba8bdbb45eb5b3ca56_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:387d5a03bce1e6b80a36582c2959e6c0569cbce7f49b5c29297c4eae1fa89a4f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3ddb9e724e529e60d4b0669d5630f661f416c4e762c60d25b70573b40ef131b3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbe78a9f8013acf7217363c5512cb61b16db26ade6a00b3ec9bad7b534ea6c97_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:0f70afc8fc44153005b719e423b9414a806f52a1f0a0eaf383214e7aeb0d1d43_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9e2ca3a4a43f24bb081c0d1a20350a9086e93dcbdc617b561fcc39369273b32e_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a66f68ebb39a0474bc89255b465750e203dabacfdec098ec20c14b7adb7e26af_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:f811943f27e46556496a9833e20192a53b11d441660f8815b32f5afbc1eddd0e_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1a7ac4b64621194572606055e495c964f0061619156b58db38e5e3ed0d63b359_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:7acd95b189ae4b09922c757de90a1855a91ec8d185144ef19027bd0ff1c9f522_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:8caabe7828c7c1df3b1edf2585a48055615ff16becb6149a8d558ce9ce717862_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:c37cf3696e1b4c67f30d7a42f324606c6814e61ddbe3e5520e0a7a0a0242ed6d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:0c87c80a5bccd9225c9d1faa85ea7d0deed337a138fadb0412af6590fd9f96b4_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6e40ba6ae462a707631a6f8496ae597f811f3eaef98bdfcc0d0dedb0dcdc1575_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:6ecb5789c21c2bf45a3312bd7116f847a3b15646009fed0031a6cf160306e965_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7a55683ac150ed1a4ec96017f62099116b81d07a0b0277a6eaab06cc2064116b_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:3b6e1dbf5de0caacb2cd524ca40193db89ec825360c0dfd8e1f3af197f4539dd_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6a598579673f0a81e14f17fc463ee4f6bb3cfa937f281bd089b479b5155980d6_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ad1759daee6b18fa3267b578c75fb178730319d1cd9527a21fb9836ddc4facac_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:babce324aa37ddf6db4514c1a697a4f2769775426fb59c635d2c8702e9952153_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:48b50cb476bad0b50177ddf4d801d8a953249f4c5a268d2822d16ed4845bf33f_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:590285997861e1233f792b5f371e9897086fd3b217a4840c5bfa971118472c94_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9c1401fe5364b8ba3a069ac69a16e60d09f54e1dc17f30bdd438933f60474b8f_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9f4ff8acdc663301d308156bb2c56d68379a95fa087bc71f41a699a8ed08eba9_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:20c651f23e57bce386239c12ad3e2a19aa3220ef5c89c2561cad7bd40476d4c0_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3fa417f375c4d41175b700a1a44f7dbd60f58a9337b1202720696f84d347fda9_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:44f8632e12b1a2e798c518cccff5aff1ebdfc1cdda8a4bb044ed01e322aa1f2c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b081739ac1afa49e7a1eb8f73b76bd30241c056eb55ed06d2845002368571fb3_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2f154bdf369c1e9b9981b9478399f8bb870aad53bd5f33420a74bfdfd942ae8d_s390x",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5d44a3b19601304824c82cb302a575d2ffa8e7085d02abfaae925af1b2908eaf_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8d50532844d79c853a38a59c62ad4e6ea253e5ca6d54a81791b38922053f9ddd_ppc64le",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:db6900b8ab7297ae4b098c821386069cba11b54e0211f726607a108b74969067_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openshift/router: openshift/router: mTLS client certificate spoofing via unstripped X-SSL-Client headers on HTTP frontend"
}
]
}
RHSA-2026:27076
Vulnerability from csaf_redhat - Published: 2026-06-18 17:24 - Updated: 2026-06-29 17:51A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src | — |
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: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src | — |
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: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src | — |
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: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src | — |
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: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src | — |
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: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch | — | ||
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch | — | ||
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src | — |
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: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src | — |
Workaround
|
A flaw was found in Pillow, a Python imaging library. This vulnerability allows a remote attacker to trigger a denial of service (DoS) by providing a specially crafted FITS image file. The library's failure to limit the amount of GZIP-compressed data during decoding can lead to unbounded memory consumption, causing the system to crash or experience severe performance issues.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src | — |
Workaround
|
|
| Unresolved product id: 8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src | — |
Workaround
|
|
| Unresolved product id: 9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64 | — |
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 is now available for Red Hat Satellite 6.16 for RHEL 8 and RHEL 9.\n\nRed Hat Product Security has rated this update as having a security impact\nof Important. A Common Vulnerability Scoring System (CVSS) base score,\nwhich gives a detailed severity rating, is available for each vulnerability\nfrom the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat Satellite is a system management solution that allows organizations\nto configure and maintain their systems without the necessity to provide\npublic Internet access to their servers or other client systems. It\nperforms provisioning and configuration management of predefined standard\noperating environments.\n\nSecurity Fix(es):\n\n* python-pillow: Pillow: Denial of Service via decompression bomb in FITS image processing (CVE-2026-40192)\n\n* yggdrasil-worker-forwarder: Root.Chmod can follow symlinks out of the root (CVE-2026-32282)\n\n* dynflow-utils: Root.Chmod can follow symlinks out of the root (CVE-2026-32282)\n\n* satellite:el8/yggdrasil-worker-forwarder: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\n* yggdrasil-worker-forwarder: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\n* yggdrasil-worker-forwarder: Incorrect parsing of IPv6 host literals in net/url (CVE-2026-25679)\n\n* satellite:el8/yggdrasil-worker-forwarder: Incorrect parsing of IPv6 host literals in net/url (CVE-2026-25679)\n\n* satellite:el8/yggdrasil-worker-forwarder: golang: Denial of Service due to excessive resource consumption via crafted certificate (CVE-2025-61729)\n\n* satellite:el8/yggdrasil-worker-forwarder: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages (CVE-2026-32283)\n\n* yggdrasil-worker-forwarder: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages (CVE-2026-32283)\n\n* yggdrasil-worker-forwarder: Go: Denial of Service vulnerability in certificate chain building (CVE-2026-32280)\n\n* satellite:el8/yggdrasil-worker-forwarder: Go: Denial of Service vulnerability in certificate chain building (CVE-2026-32280)\n\n* satellite:el8/yggdrasil-worker-forwarder: Go crypto/x509: Denial of Service via inefficient certificate chain validation (CVE-2026-32281)\n\n* yggdrasil-worker-forwarder: Go crypto/x509: Denial of Service via inefficient certificate chain validation (CVE-2026-32281)\n\nBug Fix(es):\n\n* orphan cleanup triggers CapsuleContent::UpdateContentCounts regardless of automatic_content_count_updates setting (SAT-45906)\n\n* The custom repository fails to sync with the Capsule server, resulting in an error (SAT-44720)",
"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:27076",
"url": "https://access.redhat.com/errata/RHSA-2026:27076"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "2456333",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456333"
},
{
"category": "external",
"summary": "2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "2456338",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456338"
},
{
"category": "external",
"summary": "2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "2458856",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458856"
},
{
"category": "external",
"summary": "SAT-44720",
"url": "https://issues.redhat.com/browse/SAT-44720"
},
{
"category": "external",
"summary": "SAT-45906",
"url": "https://issues.redhat.com/browse/SAT-45906"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_27076.json"
}
],
"title": "Red Hat Security Advisory: Satellite 6.16.9 Async Update",
"tracking": {
"current_release_date": "2026-06-29T17:51:03+00:00",
"generator": {
"date": "2026-06-29T17:51:03+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:27076",
"initial_release_date": "2026-06-18T17:24:02+00:00",
"revision_history": [
{
"date": "2026-06-18T17:24:02+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-18T17:24:02+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:51:03+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Satellite 6.16 for RHEL 8",
"product": {
"name": "Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:satellite:6.16::el8"
}
}
},
{
"category": "product_name",
"name": "Red Hat Satellite 6.16 for RHEL 8",
"product": {
"name": "Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:satellite_capsule:6.16::el8"
}
}
},
{
"category": "product_name",
"name": "Red Hat Satellite 6.16 for RHEL 8",
"product": {
"name": "Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-maintenance",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:satellite_maintenance:6.16::el8"
}
}
},
{
"category": "product_name",
"name": "Red Hat Satellite 6.16 for RHEL 8",
"product": {
"name": "Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-utils",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:satellite_utils:6.16::el8"
}
}
},
{
"category": "product_name",
"name": "Red Hat Satellite 6.16 for RHEL 9",
"product": {
"name": "Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:satellite:6.16::el9"
}
}
},
{
"category": "product_name",
"name": "Red Hat Satellite 6.16 for RHEL 9",
"product": {
"name": "Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:satellite_capsule:6.16::el9"
}
}
},
{
"category": "product_name",
"name": "Red Hat Satellite 6.16 for RHEL 9",
"product": {
"name": "Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-maintenance",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:satellite_maintenance:6.16::el9"
}
}
},
{
"category": "product_name",
"name": "Red Hat Satellite 6.16 for RHEL 9",
"product": {
"name": "Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-utils",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:satellite_utils:6.16::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Satellite 6"
},
{
"branches": [
{
"category": "product_version",
"name": "dynflow-utils-0:1.6.3-1.1.el8sat.src",
"product": {
"name": "dynflow-utils-0:1.6.3-1.1.el8sat.src",
"product_id": "dynflow-utils-0:1.6.3-1.1.el8sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/dynflow-utils@1.6.3-1.1.el8sat?arch=src"
}
}
},
{
"category": "product_version",
"name": "python-pillow-0:12.2.0-1.el8pc.src",
"product": {
"name": "python-pillow-0:12.2.0-1.el8pc.src",
"product_id": "python-pillow-0:12.2.0-1.el8pc.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-pillow@12.2.0-1.el8pc?arch=src"
}
}
},
{
"category": "product_version",
"name": "python-pulp-ansible-1:0.21.10-4.el8pc.src",
"product": {
"name": "python-pulp-ansible-1:0.21.10-4.el8pc.src",
"product_id": "python-pulp-ansible-1:0.21.10-4.el8pc.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-pulp-ansible@0.21.10-4.el8pc?arch=src\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "python-pulp-rpm-0:3.26.8-1.el8pc.src",
"product": {
"name": "python-pulp-rpm-0:3.26.8-1.el8pc.src",
"product_id": "python-pulp-rpm-0:3.26.8-1.el8pc.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-pulp-rpm@3.26.8-1.el8pc?arch=src"
}
}
},
{
"category": "product_version",
"name": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"product": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"product_id": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.7.14-1.el8sat?arch=src\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rubygem-katello-0:4.14.0.20-1.el8sat.src",
"product": {
"name": "rubygem-katello-0:4.14.0.20-1.el8sat.src",
"product_id": "rubygem-katello-0:4.14.0.20-1.el8sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rubygem-katello@4.14.0.20-1.el8sat?arch=src"
}
}
},
{
"category": "product_version",
"name": "satellite-0:6.16.9-1.el8sat.src",
"product": {
"name": "satellite-0:6.16.9-1.el8sat.src",
"product_id": "satellite-0:6.16.9-1.el8sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite@6.16.9-1.el8sat?arch=src"
}
}
},
{
"category": "product_version",
"name": "satellite-lifecycle-0:6.16.0-3.el8sat.src",
"product": {
"name": "satellite-lifecycle-0:6.16.0-3.el8sat.src",
"product_id": "satellite-lifecycle-0:6.16.0-3.el8sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite-lifecycle@6.16.0-3.el8sat?arch=src"
}
}
},
{
"category": "product_version",
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"product": {
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"product_id": "yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-5.el8sat?arch=src"
}
}
},
{
"category": "product_version",
"name": "dynflow-utils-0:1.6.3-1.1.el9sat.src",
"product": {
"name": "dynflow-utils-0:1.6.3-1.1.el9sat.src",
"product_id": "dynflow-utils-0:1.6.3-1.1.el9sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/dynflow-utils@1.6.3-1.1.el9sat?arch=src"
}
}
},
{
"category": "product_version",
"name": "python-pillow-0:12.2.0-1.el9pc.src",
"product": {
"name": "python-pillow-0:12.2.0-1.el9pc.src",
"product_id": "python-pillow-0:12.2.0-1.el9pc.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-pillow@12.2.0-1.el9pc?arch=src"
}
}
},
{
"category": "product_version",
"name": "python-pulp-ansible-1:0.21.10-4.el9pc.src",
"product": {
"name": "python-pulp-ansible-1:0.21.10-4.el9pc.src",
"product_id": "python-pulp-ansible-1:0.21.10-4.el9pc.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-pulp-ansible@0.21.10-4.el9pc?arch=src\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "python-pulp-rpm-0:3.26.8-1.el9pc.src",
"product": {
"name": "python-pulp-rpm-0:3.26.8-1.el9pc.src",
"product_id": "python-pulp-rpm-0:3.26.8-1.el9pc.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-pulp-rpm@3.26.8-1.el9pc?arch=src"
}
}
},
{
"category": "product_version",
"name": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"product": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"product_id": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.7.14-1.el9sat?arch=src\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rubygem-katello-0:4.14.0.20-1.el9sat.src",
"product": {
"name": "rubygem-katello-0:4.14.0.20-1.el9sat.src",
"product_id": "rubygem-katello-0:4.14.0.20-1.el9sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rubygem-katello@4.14.0.20-1.el9sat?arch=src"
}
}
},
{
"category": "product_version",
"name": "satellite-0:6.16.9-1.el9sat.src",
"product": {
"name": "satellite-0:6.16.9-1.el9sat.src",
"product_id": "satellite-0:6.16.9-1.el9sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite@6.16.9-1.el9sat?arch=src"
}
}
},
{
"category": "product_version",
"name": "satellite-lifecycle-0:6.16.0-3.el9sat.src",
"product": {
"name": "satellite-lifecycle-0:6.16.0-3.el9sat.src",
"product_id": "satellite-lifecycle-0:6.16.0-3.el9sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite-lifecycle@6.16.0-3.el9sat?arch=src"
}
}
},
{
"category": "product_version",
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"product": {
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"product_id": "yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-5.el9sat?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"product": {
"name": "dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"product_id": "dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/dynflow-utils@1.6.3-1.1.el8sat?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"product": {
"name": "python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"product_id": "python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-pillow@12.2.0-1.el8pc?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"product": {
"name": "python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"product_id": "python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-pillow-debugsource@12.2.0-1.el8pc?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"product": {
"name": "python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"product_id": "python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-pillow-debuginfo@12.2.0-1.el8pc?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"product": {
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"product_id": "yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-5.el8sat?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"product": {
"name": "dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"product_id": "dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/dynflow-utils@1.6.3-1.1.el9sat?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"product": {
"name": "python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"product_id": "python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-pillow@12.2.0-1.el9pc?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"product": {
"name": "python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"product_id": "python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-pillow-debugsource@12.2.0-1.el9pc?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"product": {
"name": "python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"product_id": "python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-pillow-debuginfo@12.2.0-1.el9pc?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64",
"product": {
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64",
"product_id": "yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-5.el9sat?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"product": {
"name": "python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"product_id": "python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-pulp-ansible@0.21.10-4.el8pc?arch=noarch\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"product": {
"name": "python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"product_id": "python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-pulp-rpm@3.26.8-1.el8pc?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"product": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"product_id": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.7.14-1.el8sat?arch=noarch\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"product": {
"name": "rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"product_id": "rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rubygem-katello@4.14.0.20-1.el8sat?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "satellite-capsule-0:6.16.9-1.el8sat.noarch",
"product": {
"name": "satellite-capsule-0:6.16.9-1.el8sat.noarch",
"product_id": "satellite-capsule-0:6.16.9-1.el8sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite-capsule@6.16.9-1.el8sat?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "satellite-common-0:6.16.9-1.el8sat.noarch",
"product": {
"name": "satellite-common-0:6.16.9-1.el8sat.noarch",
"product_id": "satellite-common-0:6.16.9-1.el8sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite-common@6.16.9-1.el8sat?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "satellite-0:6.16.9-1.el8sat.noarch",
"product": {
"name": "satellite-0:6.16.9-1.el8sat.noarch",
"product_id": "satellite-0:6.16.9-1.el8sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite@6.16.9-1.el8sat?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "satellite-cli-0:6.16.9-1.el8sat.noarch",
"product": {
"name": "satellite-cli-0:6.16.9-1.el8sat.noarch",
"product_id": "satellite-cli-0:6.16.9-1.el8sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite-cli@6.16.9-1.el8sat?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"product": {
"name": "satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"product_id": "satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite-lifecycle@6.16.0-3.el8sat?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"product": {
"name": "python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"product_id": "python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-pulp-ansible@0.21.10-4.el9pc?arch=noarch\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"product": {
"name": "python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"product_id": "python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-pulp-rpm@3.26.8-1.el9pc?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"product": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"product_id": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.7.14-1.el9sat?arch=noarch\u0026epoch=1"
}
}
},
{
"category": "product_version",
"name": "rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"product": {
"name": "rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"product_id": "rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rubygem-katello@4.14.0.20-1.el9sat?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "satellite-capsule-0:6.16.9-1.el9sat.noarch",
"product": {
"name": "satellite-capsule-0:6.16.9-1.el9sat.noarch",
"product_id": "satellite-capsule-0:6.16.9-1.el9sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite-capsule@6.16.9-1.el9sat?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "satellite-common-0:6.16.9-1.el9sat.noarch",
"product": {
"name": "satellite-common-0:6.16.9-1.el9sat.noarch",
"product_id": "satellite-common-0:6.16.9-1.el9sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite-common@6.16.9-1.el9sat?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "satellite-0:6.16.9-1.el9sat.noarch",
"product": {
"name": "satellite-0:6.16.9-1.el9sat.noarch",
"product_id": "satellite-0:6.16.9-1.el9sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite@6.16.9-1.el9sat?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "satellite-cli-0:6.16.9-1.el9sat.noarch",
"product": {
"name": "satellite-cli-0:6.16.9-1.el9sat.noarch",
"product_id": "satellite-cli-0:6.16.9-1.el9sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite-cli@6.16.9-1.el9sat?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"product": {
"name": "satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"product_id": "satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/satellite-lifecycle@6.16.0-3.el9sat?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "dynflow-utils-0:1.6.3-1.1.el8sat.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src"
},
"product_reference": "dynflow-utils-0:1.6.3-1.1.el8sat.src",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64"
},
"product_reference": "dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pillow-0:12.2.0-1.el8pc.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src"
},
"product_reference": "python-pillow-0:12.2.0-1.el8pc.src",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64"
},
"product_reference": "python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pulp-ansible-1:0.21.10-4.el8pc.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src"
},
"product_reference": "python-pulp-ansible-1:0.21.10-4.el8pc.src",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pulp-rpm-0:3.26.8-1.el8pc.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src"
},
"product_reference": "python-pulp-rpm-0:3.26.8-1.el8pc.src",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pillow-0:12.2.0-1.el8pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64"
},
"product_reference": "python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64"
},
"product_reference": "python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch"
},
"product_reference": "python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch"
},
"product_reference": "python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-0:6.16.9-1.el8sat.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src"
},
"product_reference": "satellite-0:6.16.9-1.el8sat.src",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-capsule-0:6.16.9-1.el8sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch"
},
"product_reference": "satellite-capsule-0:6.16.9-1.el8sat.noarch",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-common-0:6.16.9-1.el8sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch"
},
"product_reference": "satellite-common-0:6.16.9-1.el8sat.noarch",
"relates_to_product_reference": "8Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"relates_to_product_reference": "8Base-satellite-6.16-maintenance"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"relates_to_product_reference": "8Base-satellite-6.16-maintenance"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-0:6.16.9-1.el8sat.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src"
},
"product_reference": "satellite-0:6.16.9-1.el8sat.src",
"relates_to_product_reference": "8Base-satellite-6.16-utils"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-cli-0:6.16.9-1.el8sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch"
},
"product_reference": "satellite-cli-0:6.16.9-1.el8sat.noarch",
"relates_to_product_reference": "8Base-satellite-6.16-utils"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "dynflow-utils-0:1.6.3-1.1.el8sat.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src"
},
"product_reference": "dynflow-utils-0:1.6.3-1.1.el8sat.src",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "dynflow-utils-0:1.6.3-1.1.el8sat.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64"
},
"product_reference": "dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pillow-0:12.2.0-1.el8pc.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src"
},
"product_reference": "python-pillow-0:12.2.0-1.el8pc.src",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64"
},
"product_reference": "python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pulp-ansible-1:0.21.10-4.el8pc.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src"
},
"product_reference": "python-pulp-ansible-1:0.21.10-4.el8pc.src",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pulp-rpm-0:3.26.8-1.el8pc.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src"
},
"product_reference": "python-pulp-rpm-0:3.26.8-1.el8pc.src",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pillow-0:12.2.0-1.el8pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64"
},
"product_reference": "python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64"
},
"product_reference": "python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch"
},
"product_reference": "python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch"
},
"product_reference": "python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-katello-0:4.14.0.20-1.el8sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch"
},
"product_reference": "rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-katello-0:4.14.0.20-1.el8sat.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src"
},
"product_reference": "rubygem-katello-0:4.14.0.20-1.el8sat.src",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-0:6.16.9-1.el8sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch"
},
"product_reference": "satellite-0:6.16.9-1.el8sat.noarch",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-0:6.16.9-1.el8sat.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src"
},
"product_reference": "satellite-0:6.16.9-1.el8sat.src",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-cli-0:6.16.9-1.el8sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch"
},
"product_reference": "satellite-cli-0:6.16.9-1.el8sat.noarch",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-common-0:6.16.9-1.el8sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch"
},
"product_reference": "satellite-common-0:6.16.9-1.el8sat.noarch",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-lifecycle-0:6.16.0-3.el8sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch"
},
"product_reference": "satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-lifecycle-0:6.16.0-3.el8sat.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src"
},
"product_reference": "satellite-lifecycle-0:6.16.0-3.el8sat.src",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src"
},
"product_reference": "yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 8",
"product_id": "8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64"
},
"product_reference": "yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"relates_to_product_reference": "8Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "dynflow-utils-0:1.6.3-1.1.el9sat.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src"
},
"product_reference": "dynflow-utils-0:1.6.3-1.1.el9sat.src",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64"
},
"product_reference": "dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pillow-0:12.2.0-1.el9pc.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src"
},
"product_reference": "python-pillow-0:12.2.0-1.el9pc.src",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64"
},
"product_reference": "python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pulp-ansible-1:0.21.10-4.el9pc.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src"
},
"product_reference": "python-pulp-ansible-1:0.21.10-4.el9pc.src",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pulp-rpm-0:3.26.8-1.el9pc.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src"
},
"product_reference": "python-pulp-rpm-0:3.26.8-1.el9pc.src",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pillow-0:12.2.0-1.el9pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64"
},
"product_reference": "python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64"
},
"product_reference": "python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch"
},
"product_reference": "python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch"
},
"product_reference": "python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-0:6.16.9-1.el9sat.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src"
},
"product_reference": "satellite-0:6.16.9-1.el9sat.src",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-capsule-0:6.16.9-1.el9sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch"
},
"product_reference": "satellite-capsule-0:6.16.9-1.el9sat.noarch",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-common-0:6.16.9-1.el9sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch"
},
"product_reference": "satellite-common-0:6.16.9-1.el9sat.noarch",
"relates_to_product_reference": "9Base-satellite-6.16-capsule"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"relates_to_product_reference": "9Base-satellite-6.16-maintenance"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"relates_to_product_reference": "9Base-satellite-6.16-maintenance"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-0:6.16.9-1.el9sat.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src"
},
"product_reference": "satellite-0:6.16.9-1.el9sat.src",
"relates_to_product_reference": "9Base-satellite-6.16-utils"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-cli-0:6.16.9-1.el9sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch"
},
"product_reference": "satellite-cli-0:6.16.9-1.el9sat.noarch",
"relates_to_product_reference": "9Base-satellite-6.16-utils"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "dynflow-utils-0:1.6.3-1.1.el9sat.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src"
},
"product_reference": "dynflow-utils-0:1.6.3-1.1.el9sat.src",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "dynflow-utils-0:1.6.3-1.1.el9sat.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64"
},
"product_reference": "dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pillow-0:12.2.0-1.el9pc.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src"
},
"product_reference": "python-pillow-0:12.2.0-1.el9pc.src",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64"
},
"product_reference": "python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pulp-ansible-1:0.21.10-4.el9pc.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src"
},
"product_reference": "python-pulp-ansible-1:0.21.10-4.el9pc.src",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-pulp-rpm-0:3.26.8-1.el9pc.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src"
},
"product_reference": "python-pulp-rpm-0:3.26.8-1.el9pc.src",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pillow-0:12.2.0-1.el9pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64"
},
"product_reference": "python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64"
},
"product_reference": "python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch"
},
"product_reference": "python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch"
},
"product_reference": "python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src"
},
"product_reference": "rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-katello-0:4.14.0.20-1.el9sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch"
},
"product_reference": "rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rubygem-katello-0:4.14.0.20-1.el9sat.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src"
},
"product_reference": "rubygem-katello-0:4.14.0.20-1.el9sat.src",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-0:6.16.9-1.el9sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch"
},
"product_reference": "satellite-0:6.16.9-1.el9sat.noarch",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-0:6.16.9-1.el9sat.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src"
},
"product_reference": "satellite-0:6.16.9-1.el9sat.src",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-cli-0:6.16.9-1.el9sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch"
},
"product_reference": "satellite-cli-0:6.16.9-1.el9sat.noarch",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-common-0:6.16.9-1.el9sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch"
},
"product_reference": "satellite-common-0:6.16.9-1.el9sat.noarch",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-lifecycle-0:6.16.0-3.el9sat.noarch as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch"
},
"product_reference": "satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "satellite-lifecycle-0:6.16.0-3.el9sat.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
},
"product_reference": "satellite-lifecycle-0:6.16.0-3.el9sat.src",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src"
},
"product_reference": "yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"relates_to_product_reference": "9Base-satellite-6.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64 as a component of Red Hat Satellite 6.16 for RHEL 9",
"product_id": "9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
},
"product_reference": "yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64",
"relates_to_product_reference": "9Base-satellite-6.16"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"known_not_affected": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-18T17:24:02+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor detailed instructions how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_satellite/6.16/html/updating_red_hat_satellite/index",
"product_ids": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27076"
}
],
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
}
],
"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": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"known_not_affected": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
},
"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-18T17:24:02+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor detailed instructions how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_satellite/6.16/html/updating_red_hat_satellite/index",
"product_ids": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27076"
},
{
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
}
],
"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": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"known_not_affected": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
},
"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-18T17:24:02+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor detailed instructions how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_satellite/6.16/html/updating_red_hat_satellite/index",
"product_ids": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27076"
}
],
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
}
],
"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": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"known_not_affected": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
},
"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-18T17:24:02+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor detailed instructions how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_satellite/6.16/html/updating_red_hat_satellite/index",
"product_ids": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27076"
},
{
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"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": [
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
}
],
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"known_not_affected": [
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
},
"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-18T17:24:02+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor detailed instructions how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_satellite/6.16/html/updating_red_hat_satellite/index",
"product_ids": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27076"
},
{
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
}
],
"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": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"known_not_affected": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
},
"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-18T17:24:02+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor detailed instructions how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_satellite/6.16/html/updating_red_hat_satellite/index",
"product_ids": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27076"
}
],
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"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-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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
}
],
"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": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"known_not_affected": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src"
]
},
"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-18T17:24:02+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor detailed instructions how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_satellite/6.16/html/updating_red_hat_satellite/index",
"product_ids": [
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27076"
},
{
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"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-40192",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-04-16T00:00:49.590876+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458856"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Pillow, a Python imaging library. This vulnerability allows a remote attacker to trigger a denial of service (DoS) by providing a specially crafted FITS image file. The library\u0027s failure to limit the amount of GZIP-compressed data during decoding can lead to unbounded memory consumption, causing the system to crash or experience severe performance issues.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Pillow: Pillow: Denial of Service via decompression bomb in FITS image processing",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64"
],
"known_not_affected": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40192"
},
{
"category": "external",
"summary": "RHBZ#2458856",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458856"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40192",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40192"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40192",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40192"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/commit/3cb854e8b2bab43f40e342e665f9340d861aa628",
"url": "https://github.com/python-pillow/Pillow/commit/3cb854e8b2bab43f40e342e665f9340d861aa628"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/pull/9521",
"url": "https://github.com/python-pillow/Pillow/pull/9521"
},
{
"category": "external",
"summary": "https://github.com/python-pillow/Pillow/security/advisories/GHSA-whj4-6x5x-4v2j",
"url": "https://github.com/python-pillow/Pillow/security/advisories/GHSA-whj4-6x5x-4v2j"
},
{
"category": "external",
"summary": "https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html#prevent-fits-decompression-bomb",
"url": "https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html#prevent-fits-decompression-bomb"
}
],
"release_date": "2026-04-15T22:53:56.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-18T17:24:02+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor detailed instructions how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_satellite/6.16/html/updating_red_hat_satellite/index",
"product_ids": [
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27076"
},
{
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"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": [
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.src",
"8Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el8sat.x86_64",
"8Base-satellite-6.16:python-pillow-0:12.2.0-1.el8pc.src",
"8Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el8pc.src",
"8Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el8pc.src",
"8Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el8pc.x86_64",
"8Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el8pc.noarch",
"8Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el8pc.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el8sat.src",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.noarch",
"8Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el8sat.src",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-0:6.16.9-1.el8sat.src",
"8Base-satellite-6.16:satellite-cli-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-common-0:6.16.9-1.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.noarch",
"8Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.src",
"8Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el8sat.x86_64",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16-capsule:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16-capsule:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16-capsule:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16-capsule:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16-capsule:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16-capsule:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16-capsule:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-capsule:satellite-capsule-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-capsule:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16-maintenance:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16-utils:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.src",
"9Base-satellite-6.16:dynflow-utils-0:1.6.3-1.1.el9sat.x86_64",
"9Base-satellite-6.16:python-pillow-0:12.2.0-1.el9pc.src",
"9Base-satellite-6.16:python-pillow-debugsource-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python-pulp-ansible-1:0.21.10-4.el9pc.src",
"9Base-satellite-6.16:python-pulp-rpm-0:3.26.8-1.el9pc.src",
"9Base-satellite-6.16:python3.11-pillow-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pillow-debuginfo-0:12.2.0-1.el9pc.x86_64",
"9Base-satellite-6.16:python3.11-pulp-ansible-1:0.21.10-4.el9pc.noarch",
"9Base-satellite-6.16:python3.11-pulp-rpm-0:3.26.8-1.el9pc.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-foreman_maintain-1:1.7.14-1.el9sat.src",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.noarch",
"9Base-satellite-6.16:rubygem-katello-0:4.14.0.20-1.el9sat.src",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-0:6.16.9-1.el9sat.src",
"9Base-satellite-6.16:satellite-cli-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-common-0:6.16.9-1.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.noarch",
"9Base-satellite-6.16:satellite-lifecycle-0:6.16.0-3.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.src",
"9Base-satellite-6.16:yggdrasil-worker-forwarder-0:0.0.3-5.el9sat.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Pillow: Pillow: Denial of Service via decompression bomb in FITS image processing"
}
]
}
RHSA-2026:27712
Vulnerability from csaf_redhat - Published: 2026-06-22 02:45 - Updated: 2026-06-29 17:51A 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: AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.x86_64 | — |
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": "An update for osbuild-composer is now available for Red Hat Enterprise Linux 9.6 Extended Update Support.\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": "A service for building customized OS artifacts, such as VM images and OSTree commits, that uses osbuild under the hood. Besides building images for local usage, it can also upload images directly to cloud. It is compatible with composer-cli and cockpit-composer clients.\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.",
"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:27712",
"url": "https://access.redhat.com/errata/RHSA-2026:27712"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_27712.json"
}
],
"title": "Red Hat Security Advisory: osbuild-composer security update",
"tracking": {
"current_release_date": "2026-06-29T17:51:03+00:00",
"generator": {
"date": "2026-06-29T17:51:03+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:27712",
"initial_release_date": "2026-06-22T02:45:51+00:00",
"revision_history": [
{
"date": "2026-06-22T02:45:51+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-22T02:45:51+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:51:03+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product": {
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.6::appstream"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:132.2-9.el9_6.src",
"product": {
"name": "osbuild-composer-0:132.2-9.el9_6.src",
"product_id": "osbuild-composer-0:132.2-9.el9_6.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@132.2-9.el9_6?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:132.2-9.el9_6.aarch64",
"product": {
"name": "osbuild-composer-0:132.2-9.el9_6.aarch64",
"product_id": "osbuild-composer-0:132.2-9.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@132.2-9.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:132.2-9.el9_6.aarch64",
"product": {
"name": "osbuild-composer-core-0:132.2-9.el9_6.aarch64",
"product_id": "osbuild-composer-core-0:132.2-9.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@132.2-9.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:132.2-9.el9_6.aarch64",
"product": {
"name": "osbuild-composer-worker-0:132.2-9.el9_6.aarch64",
"product_id": "osbuild-composer-worker-0:132.2-9.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@132.2-9.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.aarch64",
"product": {
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.aarch64",
"product_id": "osbuild-composer-debugsource-0:132.2-9.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@132.2-9.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.aarch64",
"product": {
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.aarch64",
"product_id": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@132.2-9.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.aarch64",
"product": {
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.aarch64",
"product_id": "osbuild-composer-debuginfo-0:132.2-9.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@132.2-9.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.aarch64",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.aarch64",
"product_id": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@132.2-9.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.aarch64",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.aarch64",
"product_id": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@132.2-9.el9_6?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:132.2-9.el9_6.ppc64le",
"product": {
"name": "osbuild-composer-0:132.2-9.el9_6.ppc64le",
"product_id": "osbuild-composer-0:132.2-9.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@132.2-9.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:132.2-9.el9_6.ppc64le",
"product": {
"name": "osbuild-composer-core-0:132.2-9.el9_6.ppc64le",
"product_id": "osbuild-composer-core-0:132.2-9.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@132.2-9.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:132.2-9.el9_6.ppc64le",
"product": {
"name": "osbuild-composer-worker-0:132.2-9.el9_6.ppc64le",
"product_id": "osbuild-composer-worker-0:132.2-9.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@132.2-9.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.ppc64le",
"product": {
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.ppc64le",
"product_id": "osbuild-composer-debugsource-0:132.2-9.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@132.2-9.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.ppc64le",
"product": {
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.ppc64le",
"product_id": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@132.2-9.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.ppc64le",
"product": {
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.ppc64le",
"product_id": "osbuild-composer-debuginfo-0:132.2-9.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@132.2-9.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.ppc64le",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.ppc64le",
"product_id": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@132.2-9.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.ppc64le",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.ppc64le",
"product_id": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@132.2-9.el9_6?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:132.2-9.el9_6.s390x",
"product": {
"name": "osbuild-composer-0:132.2-9.el9_6.s390x",
"product_id": "osbuild-composer-0:132.2-9.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@132.2-9.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:132.2-9.el9_6.s390x",
"product": {
"name": "osbuild-composer-core-0:132.2-9.el9_6.s390x",
"product_id": "osbuild-composer-core-0:132.2-9.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@132.2-9.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:132.2-9.el9_6.s390x",
"product": {
"name": "osbuild-composer-worker-0:132.2-9.el9_6.s390x",
"product_id": "osbuild-composer-worker-0:132.2-9.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@132.2-9.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.s390x",
"product": {
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.s390x",
"product_id": "osbuild-composer-debugsource-0:132.2-9.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@132.2-9.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.s390x",
"product": {
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.s390x",
"product_id": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@132.2-9.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.s390x",
"product": {
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.s390x",
"product_id": "osbuild-composer-debuginfo-0:132.2-9.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@132.2-9.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.s390x",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.s390x",
"product_id": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@132.2-9.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.s390x",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.s390x",
"product_id": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@132.2-9.el9_6?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:132.2-9.el9_6.x86_64",
"product": {
"name": "osbuild-composer-0:132.2-9.el9_6.x86_64",
"product_id": "osbuild-composer-0:132.2-9.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@132.2-9.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:132.2-9.el9_6.x86_64",
"product": {
"name": "osbuild-composer-core-0:132.2-9.el9_6.x86_64",
"product_id": "osbuild-composer-core-0:132.2-9.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@132.2-9.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:132.2-9.el9_6.x86_64",
"product": {
"name": "osbuild-composer-worker-0:132.2-9.el9_6.x86_64",
"product_id": "osbuild-composer-worker-0:132.2-9.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@132.2-9.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.x86_64",
"product": {
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.x86_64",
"product_id": "osbuild-composer-debugsource-0:132.2-9.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@132.2-9.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.x86_64",
"product": {
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.x86_64",
"product_id": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@132.2-9.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.x86_64",
"product": {
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.x86_64",
"product_id": "osbuild-composer-debuginfo-0:132.2-9.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debuginfo@132.2-9.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.x86_64",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.x86_64",
"product_id": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@132.2-9.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.x86_64",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.x86_64",
"product_id": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@132.2-9.el9_6?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:132.2-9.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.aarch64"
},
"product_reference": "osbuild-composer-0:132.2-9.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:132.2-9.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.ppc64le"
},
"product_reference": "osbuild-composer-0:132.2-9.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:132.2-9.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.s390x"
},
"product_reference": "osbuild-composer-0:132.2-9.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:132.2-9.el9_6.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.src"
},
"product_reference": "osbuild-composer-0:132.2-9.el9_6.src",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:132.2-9.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.x86_64"
},
"product_reference": "osbuild-composer-0:132.2-9.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:132.2-9.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.aarch64"
},
"product_reference": "osbuild-composer-core-0:132.2-9.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:132.2-9.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.ppc64le"
},
"product_reference": "osbuild-composer-core-0:132.2-9.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:132.2-9.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.s390x"
},
"product_reference": "osbuild-composer-core-0:132.2-9.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:132.2-9.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.x86_64"
},
"product_reference": "osbuild-composer-core-0:132.2-9.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.aarch64"
},
"product_reference": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.ppc64le"
},
"product_reference": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.s390x"
},
"product_reference": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.x86_64"
},
"product_reference": "osbuild-composer-core-debuginfo-0:132.2-9.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.aarch64"
},
"product_reference": "osbuild-composer-debuginfo-0:132.2-9.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.ppc64le"
},
"product_reference": "osbuild-composer-debuginfo-0:132.2-9.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.s390x"
},
"product_reference": "osbuild-composer-debuginfo-0:132.2-9.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debuginfo-0:132.2-9.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.x86_64"
},
"product_reference": "osbuild-composer-debuginfo-0:132.2-9.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.aarch64"
},
"product_reference": "osbuild-composer-debugsource-0:132.2-9.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.ppc64le"
},
"product_reference": "osbuild-composer-debugsource-0:132.2-9.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.s390x"
},
"product_reference": "osbuild-composer-debugsource-0:132.2-9.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:132.2-9.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.x86_64"
},
"product_reference": "osbuild-composer-debugsource-0:132.2-9.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.aarch64"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.ppc64le"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.s390x"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.x86_64"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:132.2-9.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.aarch64"
},
"product_reference": "osbuild-composer-worker-0:132.2-9.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:132.2-9.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.ppc64le"
},
"product_reference": "osbuild-composer-worker-0:132.2-9.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:132.2-9.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.s390x"
},
"product_reference": "osbuild-composer-worker-0:132.2-9.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:132.2-9.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.x86_64"
},
"product_reference": "osbuild-composer-worker-0:132.2-9.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.aarch64"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.ppc64le"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.s390x"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.x86_64"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
}
]
},
"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": [
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.src",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.x86_64"
]
},
"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-22T02:45:51+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.src",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27712"
},
{
"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": [
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.src",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.x86_64"
]
}
],
"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": [
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.src",
"AppStream-9.6.0.Z.EUS:osbuild-composer-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-core-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-debugsource-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-tests-debuginfo-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-0:132.2-9.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:osbuild-composer-worker-debuginfo-0:132.2-9.el9_6.x86_64"
]
}
],
"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:27856
Vulnerability from csaf_redhat - Published: 2026-06-22 11:36 - Updated: 2026-06-29 18:45A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64 | — |
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: AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64 | — |
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": "An update for osbuild-composer is now available for Red Hat Enterprise Linux 10.0 Extended Update Support.\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": "A service for building customized OS artifacts, such as VM images and OSTree commits, that uses osbuild under the hood. Besides building images for local usage, it can also upload images directly to cloud. It is compatible with composer-cli and cockpit-composer clients.\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\n* 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-2026-34986)\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.",
"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:27856",
"url": "https://access.redhat.com/errata/RHSA-2026:27856"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_27856.json"
}
],
"title": "Red Hat Security Advisory: osbuild-composer security update",
"tracking": {
"current_release_date": "2026-06-29T18:45:38+00:00",
"generator": {
"date": "2026-06-29T18:45:38+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:27856",
"initial_release_date": "2026-06-22T11:36:22+00:00",
"revision_history": [
{
"date": "2026-06-22T11:36:22+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-22T11:36:22+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T18:45:38+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product": {
"name": "Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux_eus:10.0"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:134.1-9.el10_0.src",
"product": {
"name": "osbuild-composer-0:134.1-9.el10_0.src",
"product_id": "osbuild-composer-0:134.1-9.el10_0.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@134.1-9.el10_0?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:134.1-9.el10_0.aarch64",
"product": {
"name": "osbuild-composer-0:134.1-9.el10_0.aarch64",
"product_id": "osbuild-composer-0:134.1-9.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@134.1-9.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"product": {
"name": "osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"product_id": "osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@134.1-9.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"product": {
"name": "osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"product_id": "osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@134.1-9.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"product": {
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"product_id": "osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@134.1-9.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"product": {
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"product_id": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@134.1-9.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"product_id": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@134.1-9.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"product_id": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@134.1-9.el10_0?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:134.1-9.el10_0.ppc64le",
"product": {
"name": "osbuild-composer-0:134.1-9.el10_0.ppc64le",
"product_id": "osbuild-composer-0:134.1-9.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@134.1-9.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"product": {
"name": "osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"product_id": "osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@134.1-9.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"product": {
"name": "osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"product_id": "osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@134.1-9.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"product": {
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"product_id": "osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@134.1-9.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"product": {
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"product_id": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@134.1-9.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"product_id": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@134.1-9.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"product_id": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@134.1-9.el10_0?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:134.1-9.el10_0.s390x",
"product": {
"name": "osbuild-composer-0:134.1-9.el10_0.s390x",
"product_id": "osbuild-composer-0:134.1-9.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@134.1-9.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:134.1-9.el10_0.s390x",
"product": {
"name": "osbuild-composer-core-0:134.1-9.el10_0.s390x",
"product_id": "osbuild-composer-core-0:134.1-9.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@134.1-9.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"product": {
"name": "osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"product_id": "osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@134.1-9.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"product": {
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"product_id": "osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@134.1-9.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"product": {
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"product_id": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@134.1-9.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"product_id": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@134.1-9.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"product_id": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@134.1-9.el10_0?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "osbuild-composer-0:134.1-9.el10_0.x86_64",
"product": {
"name": "osbuild-composer-0:134.1-9.el10_0.x86_64",
"product_id": "osbuild-composer-0:134.1-9.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer@134.1-9.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"product": {
"name": "osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"product_id": "osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core@134.1-9.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"product": {
"name": "osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"product_id": "osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker@134.1-9.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"product": {
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"product_id": "osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-debugsource@134.1-9.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"product": {
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"product_id": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-core-debuginfo@134.1-9.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"product": {
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"product_id": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-tests-debuginfo@134.1-9.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64",
"product": {
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64",
"product_id": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/osbuild-composer-worker-debuginfo@134.1-9.el10_0?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:134.1-9.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.aarch64"
},
"product_reference": "osbuild-composer-0:134.1-9.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:134.1-9.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.ppc64le"
},
"product_reference": "osbuild-composer-0:134.1-9.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:134.1-9.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.s390x"
},
"product_reference": "osbuild-composer-0:134.1-9.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:134.1-9.el10_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.src"
},
"product_reference": "osbuild-composer-0:134.1-9.el10_0.src",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-0:134.1-9.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.x86_64"
},
"product_reference": "osbuild-composer-0:134.1-9.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:134.1-9.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.aarch64"
},
"product_reference": "osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:134.1-9.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.ppc64le"
},
"product_reference": "osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:134.1-9.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.s390x"
},
"product_reference": "osbuild-composer-core-0:134.1-9.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-0:134.1-9.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.x86_64"
},
"product_reference": "osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64"
},
"product_reference": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le"
},
"product_reference": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x"
},
"product_reference": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64"
},
"product_reference": "osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64"
},
"product_reference": "osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le"
},
"product_reference": "osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.s390x"
},
"product_reference": "osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64"
},
"product_reference": "osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64"
},
"product_reference": "osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:134.1-9.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.aarch64"
},
"product_reference": "osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:134.1-9.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.ppc64le"
},
"product_reference": "osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:134.1-9.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.s390x"
},
"product_reference": "osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-0:134.1-9.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.x86_64"
},
"product_reference": "osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64"
},
"product_reference": "osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
}
]
},
"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": [
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.src",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64"
]
},
"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-22T11:36:22+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.src",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27856"
},
{
"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": [
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.src",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64"
]
}
],
"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": [
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.src",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64"
]
}
],
"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",
"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": [
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.src",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64"
]
},
"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-22T11:36:22+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.src",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27856"
},
{
"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": [
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.src",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64"
]
}
],
"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": [
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.src",
"AppStream-10.0.Z.E2S:osbuild-composer-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-core-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-debugsource-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-tests-debuginfo-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-0:134.1-9.el10_0.x86_64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.aarch64",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.s390x",
"AppStream-10.0.Z.E2S:osbuild-composer-worker-debuginfo-0:134.1-9.el10_0.x86_64"
]
}
],
"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:27892
Vulnerability from csaf_redhat - Published: 2026-06-22 12:41 - Updated: 2026-06-29 17:51A 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 Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:af54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:c5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:dbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4_s390x | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Virtualization release v4.21 is now available with updates to packages and images that fix several bugs and add enhancements.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenShift Virtualization is Red Hat\u0027s virtualization solution designed for Red Hat OpenShift Container Platform.\n\nThis advisory contains OpenShift Virtualization v4.21 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:27892",
"url": "https://access.redhat.com/errata/RHSA-2026:27892"
},
{
"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_27892.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Virtualization v4.21 Images",
"tracking": {
"current_release_date": "2026-06-29T17:51:05+00:00",
"generator": {
"date": "2026-06-29T17:51:05+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:27892",
"initial_release_date": "2026-06-22T12:41:14+00:00",
"revision_history": [
{
"date": "2026-06-22T12:41:14+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-22T12:41:25+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:51:05+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Container Native Virtualization 4.21",
"product": {
"name": "Red Hat Container Native Virtualization 4.21",
"product_id": "Red Hat Container Native Virtualization 4.21",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:container_native_virtualization:4.21::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Container Native Virtualization"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e_amd64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e_amd64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3A7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e?arch=amd64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781624123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392_amd64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392_amd64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3A2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392?arch=amd64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781625464"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:af54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537_arm64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:af54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537_arm64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:af54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3Aaf54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537?arch=arm64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781624123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:c5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b_arm64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:c5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b_arm64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:c5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3Ac5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b?arch=arm64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781625464"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1_s390x",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1_s390x",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3A503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1?arch=s390x\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781624123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:dbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4_s390x",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:dbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4_s390x",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:dbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3Adbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4?arch=s390x\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781625464"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1_s390x as a component of Red Hat Container Native Virtualization 4.21",
"product_id": "Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1_s390x"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1_s390x",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e_amd64 as a component of Red Hat Container Native Virtualization 4.21",
"product_id": "Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e_amd64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e_amd64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:af54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537_arm64 as a component of Red Hat Container Native Virtualization 4.21",
"product_id": "Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:af54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537_arm64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:af54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537_arm64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392_amd64 as a component of Red Hat Container Native Virtualization 4.21",
"product_id": "Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392_amd64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392_amd64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:c5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b_arm64 as a component of Red Hat Container Native Virtualization 4.21",
"product_id": "Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:c5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b_arm64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:c5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b_arm64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:dbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4_s390x as a component of Red Hat Container Native Virtualization 4.21",
"product_id": "Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:dbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4_s390x"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:dbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4_s390x",
"relates_to_product_reference": "Red Hat Container Native Virtualization 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 Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392_amd64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:c5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b_arm64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:dbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1_s390x",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e_amd64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:af54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537_arm64"
],
"known_not_affected": [
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392_amd64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:c5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b_arm64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:dbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4_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-22T12:41:14+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1_s390x",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e_amd64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:af54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27892"
},
{
"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 Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1_s390x",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e_amd64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:af54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537_arm64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392_amd64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:c5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b_arm64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:dbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4_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 Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:503da66fe09453f2227ee7e0945ce50eafdbca05b6fb70177f716d5076ae85d1_s390x",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:7ea195b07092de48e437dbb3e90632f1d25054891ee7d171930a88c2cdd51a6e_amd64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:af54ece0c1118c8e83de5b12657535b8f2a78fdac734d4e3edf3cb9fbbcdb537_arm64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2616b32a119196479838d427d8354ebb9013dd4fdf6c52faee1e31cebc2b3392_amd64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:c5ab47c065bc8c5e327737b7fdcce65f7ae2c7c340d52b0ba27fbfed3060866b_arm64",
"Red Hat Container Native Virtualization 4.21:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:dbf1619a761f82de049b0ead1c9ae390775cbc3e0881fc4e8f8a8410753276a4_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"
}
]
}
RHSA-2026:27893
Vulnerability from csaf_redhat - Published: 2026-06-22 12:41 - Updated: 2026-06-29 17:51A 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 Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:edfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:f1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22_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 Virtualization release v4.18 is now available with updates to packages and images that fix several bugs and add enhancements.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenShift Virtualization is Red Hat\u0027s virtualization solution designed for Red Hat OpenShift Container Platform.\n\nThis advisory contains OpenShift Virtualization v4.18 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:27893",
"url": "https://access.redhat.com/errata/RHSA-2026:27893"
},
{
"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_27893.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Virtualization v4.18 Images",
"tracking": {
"current_release_date": "2026-06-29T17:51:05+00:00",
"generator": {
"date": "2026-06-29T17:51:05+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:27893",
"initial_release_date": "2026-06-22T12:41:19+00:00",
"revision_history": [
{
"date": "2026-06-22T12:41:19+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-22T12:41:29+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:51:05+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Container Native Virtualization 4.18",
"product": {
"name": "Red Hat Container Native Virtualization 4.18",
"product_id": "Red Hat Container Native Virtualization 4.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:container_native_virtualization:4.18::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Container Native Virtualization"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:edfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6_amd64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:edfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6_amd64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:edfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3Aedfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6?arch=amd64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781731920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22_amd64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22_amd64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3A6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22?arch=amd64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781732045"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:f1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27_arm64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:f1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27_arm64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:f1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3Af1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27?arch=arm64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781731920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70_arm64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70_arm64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3A15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70?arch=arm64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781732045"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b_s390x",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b_s390x",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3A0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b?arch=s390x\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781731920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4_s390x",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4_s390x",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3A45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4?arch=s390x\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781732045"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b_s390x as a component of Red Hat Container Native Virtualization 4.18",
"product_id": "Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b_s390x"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b_s390x",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:edfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6_amd64 as a component of Red Hat Container Native Virtualization 4.18",
"product_id": "Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:edfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6_amd64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:edfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6_amd64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:f1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27_arm64 as a component of Red Hat Container Native Virtualization 4.18",
"product_id": "Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:f1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27_arm64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:f1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27_arm64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70_arm64 as a component of Red Hat Container Native Virtualization 4.18",
"product_id": "Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70_arm64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70_arm64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4_s390x as a component of Red Hat Container Native Virtualization 4.18",
"product_id": "Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4_s390x"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4_s390x",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22_amd64 as a component of Red Hat Container Native Virtualization 4.18",
"product_id": "Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22_amd64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22_amd64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70_arm64",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4_s390x",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22_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 Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b_s390x",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:edfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6_amd64",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:f1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27_arm64"
],
"known_not_affected": [
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70_arm64",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4_s390x",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22_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-22T12:41:19+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b_s390x",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:edfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6_amd64",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:f1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27893"
},
{
"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 Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b_s390x",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:edfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6_amd64",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:f1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27_arm64",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70_arm64",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4_s390x",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22_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 Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:0b946e36b1480c68b9016b7ad6ee785c68bab137595ee44ce20471cd4b9b132b_s390x",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:edfb4a17b61cc7471c9ef1207bcd5b46384d5a02562906e7d169132e41836af6_amd64",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:f1e1d2d866c2a14e921a9f07dae3e0a02fd260d924c86dae67092e3b6c9e0b27_arm64",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:15e2fb3849c5f4026a072a1271385c2eea753e293ed7923c1968496a26477d70_arm64",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:45db9786003fa468897b72001873abfb62bf728898896b6df2cefdc747190df4_s390x",
"Red Hat Container Native Virtualization 4.18:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:6e9c1572783151e6851e3c242ec5f15fb6a5b24e58b297e8fbff1461bfbf7c22_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:27901
Vulnerability from csaf_redhat - Published: 2026-06-22 12:44 - Updated: 2026-06-29 17:51A 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 Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:c0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:db35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279_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 Virtualization release v4.19 is now available with updates to packages and images that fix several bugs and add enhancements.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenShift Virtualization is Red Hat\u0027s virtualization solution designed for Red Hat OpenShift Container Platform.\n\nThis advisory contains OpenShift Virtualization v4.19 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:27901",
"url": "https://access.redhat.com/errata/RHSA-2026:27901"
},
{
"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_27901.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Virtualization v4.19 Images",
"tracking": {
"current_release_date": "2026-06-29T17:51:05+00:00",
"generator": {
"date": "2026-06-29T17:51:05+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:27901",
"initial_release_date": "2026-06-22T12:44:18+00:00",
"revision_history": [
{
"date": "2026-06-22T12:44:18+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-22T12:44:29+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:51:05+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Container Native Virtualization 4.19",
"product": {
"name": "Red Hat Container Native Virtualization 4.19",
"product_id": "Red Hat Container Native Virtualization 4.19",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:container_native_virtualization:4.19::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Container Native Virtualization"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59_amd64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59_amd64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3A000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59?arch=amd64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781729960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:db35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279_amd64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:db35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279_amd64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:db35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3Adb35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279?arch=amd64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781730498"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:c0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109_arm64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:c0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109_arm64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:c0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3Ac0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109?arch=arm64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781729960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1_arm64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1_arm64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3A149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1?arch=arm64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781730498"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d_s390x",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d_s390x",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3A2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d?arch=s390x\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781729960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7_s390x",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7_s390x",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3A239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7?arch=s390x\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781730498"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59_amd64 as a component of Red Hat Container Native Virtualization 4.19",
"product_id": "Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59_amd64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59_amd64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d_s390x as a component of Red Hat Container Native Virtualization 4.19",
"product_id": "Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d_s390x"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d_s390x",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:c0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109_arm64 as a component of Red Hat Container Native Virtualization 4.19",
"product_id": "Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:c0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109_arm64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:c0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109_arm64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1_arm64 as a component of Red Hat Container Native Virtualization 4.19",
"product_id": "Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1_arm64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1_arm64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7_s390x as a component of Red Hat Container Native Virtualization 4.19",
"product_id": "Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7_s390x"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7_s390x",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:db35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279_amd64 as a component of Red Hat Container Native Virtualization 4.19",
"product_id": "Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:db35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279_amd64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:db35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279_amd64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 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 Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1_arm64",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7_s390x",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:db35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279_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 Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59_amd64",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d_s390x",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:c0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109_arm64"
],
"known_not_affected": [
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1_arm64",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7_s390x",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:db35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279_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-22T12:44:18+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59_amd64",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d_s390x",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:c0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27901"
},
{
"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 Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59_amd64",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d_s390x",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:c0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109_arm64",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1_arm64",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7_s390x",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:db35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279_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 Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:000bc72922c1cde56c5a31da18e816dc1fcaef66e8788166172ef3cf67c00f59_amd64",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ee75a575fed2549a1a3c04d5683ca6d2311fd60bd8868e18486b9d223e1ed0d_s390x",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:c0a28891b65cccd70ecd73ad4a05c771778dd1d25f7bbc6f61f3abfc35d81109_arm64",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:149605a96859067cffa3d33be96a2397b802759db8df26ecfce510513a78add1_arm64",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:239587208accfd0130884ce46f947a580816be484569c3166110e2ec1e6ad2b7_s390x",
"Red Hat Container Native Virtualization 4.19:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:db35cbefa8e8ff62d1e6fd54eceade3d66971f0f2791bb7b9d02f02b1b466279_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:27957
Vulnerability from csaf_redhat - Published: 2026-06-22 14:46 - Updated: 2026-06-29 17:51A 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 Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:d4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef_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 Virtualization release v4.20 is now available with updates to packages and images that fix several bugs and add enhancements.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenShift Virtualization is Red Hat\u0027s virtualization solution designed for Red Hat OpenShift Container Platform.\n\nThis advisory contains OpenShift Virtualization v4.20 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:27957",
"url": "https://access.redhat.com/errata/RHSA-2026:27957"
},
{
"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_27957.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Virtualization v4.20 Images",
"tracking": {
"current_release_date": "2026-06-29T17:51:05+00:00",
"generator": {
"date": "2026-06-29T17:51:05+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:27957",
"initial_release_date": "2026-06-22T14:46:52+00:00",
"revision_history": [
{
"date": "2026-06-22T14:46:52+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-22T14:47:01+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:51:05+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Container Native Virtualization 4.20",
"product": {
"name": "Red Hat Container Native Virtualization 4.20",
"product_id": "Red Hat Container Native Virtualization 4.20",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:container_native_virtualization:4.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Container Native Virtualization"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa_amd64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa_amd64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3A2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa?arch=amd64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781730563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330_amd64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330_amd64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3A2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330?arch=amd64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781730284"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171_arm64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171_arm64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3A81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171?arch=arm64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781730563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:d4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef_arm64",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:d4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef_arm64",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:d4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3Ad4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef?arch=arm64\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781730284"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49_s390x",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49_s390x",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256%3A11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49?arch=s390x\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9\u0026tag=1781730563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe_s390x",
"product": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe_s390x",
"product_id": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hostpath-provisioner-rhel9@sha256%3A2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe?arch=s390x\u0026repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9\u0026tag=1781730284"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49_s390x as a component of Red Hat Container Native Virtualization 4.20",
"product_id": "Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49_s390x"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49_s390x",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa_amd64 as a component of Red Hat Container Native Virtualization 4.20",
"product_id": "Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa_amd64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa_amd64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171_arm64 as a component of Red Hat Container Native Virtualization 4.20",
"product_id": "Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171_arm64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171_arm64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe_s390x as a component of Red Hat Container Native Virtualization 4.20",
"product_id": "Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe_s390x"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe_s390x",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330_amd64 as a component of Red Hat Container Native Virtualization 4.20",
"product_id": "Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330_amd64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330_amd64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:d4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef_arm64 as a component of Red Hat Container Native Virtualization 4.20",
"product_id": "Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:d4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef_arm64"
},
"product_reference": "registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:d4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef_arm64",
"relates_to_product_reference": "Red Hat Container Native Virtualization 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 Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe_s390x",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330_amd64",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:d4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef_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 Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49_s390x",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa_amd64",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171_arm64"
],
"known_not_affected": [
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe_s390x",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330_amd64",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:d4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef_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-22T14:46:52+00:00",
"details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49_s390x",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa_amd64",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27957"
},
{
"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 Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49_s390x",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa_amd64",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171_arm64",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe_s390x",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330_amd64",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:d4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef_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 Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:11b6c74ac8775309613003f1f580f80b63c82fc650a261d8808236548476ca49_s390x",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:2ed9f59221ef39fd2ff36ed163db76efb9e5fd537e0c60a604070018e97996aa_amd64",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9@sha256:81590327f5b942ba4070bce6c55ba6c46a1d12a97e263a49060ebe2f56744171_arm64",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2cfc75420ae496b051e75d4f4b3efb68c41a3e16772d9080051a784d93550efe_s390x",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:2e72070b7b1e91d4d2c070dcfe100d5553fec8936d538b53937c25bdf1e81330_amd64",
"Red Hat Container Native Virtualization 4.20:registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9@sha256:d4bc7c875714e9310470deb70e3225e2efd7eb1033d491dab3c55cdc943031ef_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:28047
Vulnerability from csaf_redhat - Published: 2026-06-22 21:01 - Updated: 2026-06-29 17:51A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the crypto/tls component. This vulnerability occurs during Transport Layer Security (TLS) session resumption when certificate authority (CA) settings are modified between the initial and resumed handshakes. An attacker could exploit this to bypass certificate validation, allowing a client or server to establish a connection that should have been rejected. This could lead to an authentication bypass under specific conditions.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
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: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
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: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
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: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
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: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
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: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
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: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
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: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
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: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: 9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 | — |
Vendor Fix
fix
|
{
"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 etcd is now available for Red Hat OpenStack Platform 17.1\n(Wallaby).\n\nRed Hat Product Security has rated this update as having a security impact\nof Important. A Common Vulnerability Scoring System (CVSS) base score,\nwhich gives a detailed severity rating, is available for each vulnerability\nfrom the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "etcd is a highly-available key value store for shared configuration.\n\nSecurity Fix(es):\n\n* net/url: Memory exhaustion in query parameter parsing in net/url\n(CVE-2025-61726)\n\n* golang: Denial of Service due to excessive resource consumption via\ncrafted certificate (CVE-2025-61729)\n\n* Incorrect parsing of IPv6 host literals in net/url (CVE-2026-25679)\n\n* Incorrect enforcement of email constraints in crypto/x509\n(CVE-2026-27137)\n\n* crypto/tls: golang: Go: Denial of Service vulnerability in certificate\nchain building (CVE-2026-32280)\n\n* golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update\nmessages (CVE-2026-32283)\n\n* google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to\nimproper HTTP/2 path validation (CVE-2026-33186)\n\n* golang: Go crypto/x509: Certificate validation bypass due to incorrect\nDNS constraint application (CVE-2026-33810)\n\n* crypto/tls: Incorrect certificate validation during TLS session\nresumption (CVE-2025-68121)\n\n* internal/syscall/unix: Root.Chmod can follow symlinks out of the root\n(CVE-2026-32282)\n\n* etcd: Authorization bypass allows information disclosure and denial of\nservice (CVE-2026-33413)\n\nFor more details about the security issue(s), including the impact, a CVSS\nscore, acknowledgments, and other related information, refer to the CVE\npage listed in the References section.",
"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:28047",
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "2437111",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437111"
},
{
"category": "external",
"summary": "2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "2451728",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451728"
},
{
"category": "external",
"summary": "2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "2456338",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456338"
},
{
"category": "external",
"summary": "2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_28047.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenStack Platform 17.1 (etcd) security update",
"tracking": {
"current_release_date": "2026-06-29T17:51:05+00:00",
"generator": {
"date": "2026-06-29T17:51:05+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:28047",
"initial_release_date": "2026-06-22T21:01:08+00:00",
"revision_history": [
{
"date": "2026-06-22T21:01:08+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-22T21:01:08+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:51:05+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenStack Platform 17.1",
"product": {
"name": "Red Hat OpenStack Platform 17.1",
"product_id": "9Base-RHOS-17.1",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openstack:17.1::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenStack Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "etcd-0:3.4.26-9.5.el9ost.src",
"product": {
"name": "etcd-0:3.4.26-9.5.el9ost.src",
"product_id": "etcd-0:3.4.26-9.5.el9ost.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/etcd@3.4.26-9.5.el9ost?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "etcd-0:3.4.26-9.5.el9ost.x86_64",
"product": {
"name": "etcd-0:3.4.26-9.5.el9ost.x86_64",
"product_id": "etcd-0:3.4.26-9.5.el9ost.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/etcd@3.4.26-9.5.el9ost?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64",
"product": {
"name": "etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64",
"product_id": "etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/etcd-debugsource@3.4.26-9.5.el9ost?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"product": {
"name": "etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"product_id": "etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/etcd-debuginfo@3.4.26-9.5.el9ost?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "etcd-0:3.4.26-9.5.el9ost.src as a component of Red Hat OpenStack Platform 17.1",
"product_id": "9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src"
},
"product_reference": "etcd-0:3.4.26-9.5.el9ost.src",
"relates_to_product_reference": "9Base-RHOS-17.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "etcd-0:3.4.26-9.5.el9ost.x86_64 as a component of Red Hat OpenStack Platform 17.1",
"product_id": "9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64"
},
"product_reference": "etcd-0:3.4.26-9.5.el9ost.x86_64",
"relates_to_product_reference": "9Base-RHOS-17.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64 as a component of Red Hat OpenStack Platform 17.1",
"product_id": "9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64"
},
"product_reference": "etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"relates_to_product_reference": "9Base-RHOS-17.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64 as a component of Red Hat OpenStack Platform 17.1",
"product_id": "9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
},
"product_reference": "etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64",
"relates_to_product_reference": "9Base-RHOS-17.1"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-61726",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:42.791305+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "RHBZ#2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61726",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61726"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://go.dev/cl/736712",
"url": "https://go.dev/cl/736712"
},
{
"category": "external",
"summary": "https://go.dev/issue/77101",
"url": "https://go.dev/issue/77101"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4341",
"url": "https://pkg.go.dev/vuln/GO-2026-4341"
}
],
"release_date": "2026-01-28T19:30:31.215000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-22T21:01:08+00:00",
"details": "For details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-22T21:01:08+00:00",
"details": "For details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
}
],
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2025-68121",
"discovery_date": "2026-02-05T18:01:30.086058+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2437111"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the crypto/tls component. This vulnerability occurs during Transport Layer Security (TLS) session resumption when certificate authority (CA) settings are modified between the initial and resumed handshakes. An attacker could exploit this to bypass certificate validation, allowing a client or server to establish a connection that should have been rejected. This could lead to an authentication bypass under specific conditions.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is a moderate flaw because it only occurs under specific conditions, such as TLS session resumption with runtime changes to certificate authority settings. Exploitation is not straightforward and requires a controlled setup. The impact is limited to certificate validation within the same component and does not affect system availability.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68121"
},
{
"category": "external",
"summary": "RHBZ#2437111",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437111"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68121",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68121"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68121"
},
{
"category": "external",
"summary": "https://go.dev/cl/737700",
"url": "https://go.dev/cl/737700"
},
{
"category": "external",
"summary": "https://go.dev/issue/77217",
"url": "https://go.dev/issue/77217"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk",
"url": "https://groups.google.com/g/golang-announce/c/K09ubi9FQFk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4337",
"url": "https://pkg.go.dev/vuln/GO-2026-4337"
}
],
"release_date": "2026-02-05T17:48:44.141000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-22T21:01:08+00:00",
"details": "For details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
}
],
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/tls: crypto/tls: Incorrect certificate validation during TLS session resumption"
},
{
"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",
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
},
"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-22T21:01:08+00:00",
"details": "For details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
},
{
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"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",
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
},
"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-22T21:01:08+00:00",
"details": "For details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
},
{
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509"
},
{
"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",
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
},
"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-22T21:01:08+00:00",
"details": "For details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
}
],
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building"
},
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
},
"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-22T21:01:08+00:00",
"details": "For details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
},
{
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"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",
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
},
"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-22T21:01:08+00:00",
"details": "For details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
}
],
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"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-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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
},
"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-22T21:01:08+00:00",
"details": "For details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
},
{
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"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-33413",
"cwe": {
"id": "CWE-306",
"name": "Missing Authentication for Critical Function"
},
"discovery_date": "2026-03-26T14:03:01.896580+00:00",
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
},
"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-22T21:01:08+00:00",
"details": "For details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
},
{
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "etcd: etcd: Authorization bypass allows information disclosure and denial of service"
},
{
"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",
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
},
"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-22T21:01:08+00:00",
"details": "For details on how to apply this update, which includes the changes\ndescribed in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:28047"
}
],
"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": [
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.src",
"9Base-RHOS-17.1:etcd-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-9.5.el9ost.x86_64",
"9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-9.5.el9ost.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application"
}
]
}
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.